




/* ===== CSS RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Renkler */
    --primary-color: #2c5530;       /* DoÄŸal yeÅŸil - ahÅŸap temasÄ± */
    --secondary-color: #d4a55c;     /* AltÄ±n sarÄ±sÄ± - ahÅŸap rengi */
    --accent-color: #8b4513;        /* Kahverengi - ahÅŸap tonu */
    --light-color: #f8f5f0;         /* AÃ§Ä±k bej */
    --dark-color: #1a1a1a;          /* Koyu gri */
    --text-color: #333333;          /* Ana metin rengi */
    --text-light: #666666;          /* AÃ§Ä±k metin */
    --border-color: #e0d9cc;        /* Border rengi */
    --error-color: #e74c3c;         /* Hata rengi */
    --success-color: #27ae60;       /* BaÅŸarÄ± rengi */
    --white: #ffffff;
    --black: #000000;
    
    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    
    /* Boyutlar */
    --container-width: 1200px;
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    --box-shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    height: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul, ol {
    list-style-position: inside;
    margin-bottom: 1rem;
}

/* ===== BUTTONS ===== */

#menuToggle {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 9999 !important;
    background: var(--white) !important;
    border: 2px solid var(--primary-color) !important;
    border-radius: 8px !important;
    width: 44px !important;
    height: 44px !important;
    margin-left: 15px !important;
    cursor: pointer !important;
}

/* Hamburger Ã§izgileri */
#menuToggle .menu-bar {
    display: block !important;
    width: 22px !important;
    height: 2px !important;
    background-color: var(--primary-color) !important;
    margin: 3px 0 !important;
    transition: all 0.3s ease !important;
}

/* MasaÃ¼stÃ¼ iÃ§in */
@media (min-width: 992px) {
    #menuToggle {
        display: none !important;
    }
}


.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    gap: 8px;
    text-align: center;
    white-space: nowrap;
    font-family: var(--font-heading);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: #234026;
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
    color: var(--white);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover,
.btn-outline:focus {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-secondary:hover,
.btn-secondary:focus {
    background-color: #c2954e;
    transform: translateY(-2px);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.9rem;
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

/* ===== HEADER ===== */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    transition: all 0.3s ease;
    padding: 27px 0;
}

.header .container {
    padding: 0 10px; /* Reduced from 20px to move logo closer to left */
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    position: relative;
    flex-wrap: nowrap;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    min-width: 0;
    order: 1;
}

.logo img {
    height: 50px;
    width: auto;
    max-width: 100%;
    display: block;
}

.logo-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.logo-main {
    font-family: var(--font-heading);
    font-size: 1.8rem; /* Increased from 1.5rem */
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.1;
    white-space: nowrap;
}

.logo-sub {
    font-size: 0.95rem; /* Increased from 0.8rem */
    color: var(--text-light);
    letter-spacing: 1.2px;
    white-space: nowrap;
}

/* ===== MASAÃœSTÃœ NAVÄ°GASYON ===== */
.desktop-nav {
    flex: 1;
    display: flex;
    justify-content: center;
    order: 2;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    font-weight: 500;
    color: var(--text-color);
    position: relative;
    font-family: var(--font-heading);
}

.nav-link:hover,
.nav-link:focus,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.nav-link i {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

/* Header Contact */
.header-contact {
    flex-shrink: 0;
    order: 4;
}

.contact-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: 2px solid transparent;
}

.contact-phone:hover,
.contact-phone:focus {
    background-color: #f0ebe3;
    border-color: var(--primary-color);
    outline: none;
}

.contact-phone i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.phone-text {
    display: flex;
    flex-direction: column;
}

.phone-label {
    font-size: 0.8rem;
    color: var(--text-light);
}

.phone-number {
    font-weight: 600;
    color: var(--primary-color);
    font-family: var(--font-heading);
}

/* ===== MOBÄ°L MENÃœ TASARIMI ===== */
/* Mobil menÃ¼ toggle butonu */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    cursor: pointer;
    padding: 10px;
    transition: all 0.3s ease;
    z-index: 1002;
    margin-left: 15px;
    order: 3;
    flex-shrink: 0;
}

.menu-toggle:hover {
    background: var(--light-color);
}

.menu-toggle.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.menu-bar {
    display: block;
    width: 22px;
    height: 2px;
    background-color: var(--primary-color);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 1px;
    transform-origin: center;
}

.menu-toggle.active .menu-bar {
    background-color: var(--white);
}

.menu-toggle.active .bar1 {
    transform: rotate(45deg) translate(4px, 4px);
}

.menu-toggle.active .bar2 {
    opacity: 0;
    transform: translateX(-10px);
}

.menu-toggle.active .bar3 {
    transform: rotate(-45deg) translate(4px, -4px);
}

/* Ana mobil menÃ¼ */
.main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: var(--light-color) !important;
    box-shadow: -5px 0 25px rgba(44, 85, 48, 0.15);
    z-index: 1001;
    transition: all 0.4s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    padding: 80px 25px 30px;
    overflow-y: auto;
    display: block !important;
    border-left: 4px solid var(--primary-color);
}

.main-nav.active {
    right: 0;
}

/* MenÃ¼ overlay */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobil navigasyon listesi */
.main-nav .nav-list {
    flex-direction: column;
    gap: 10px;
    padding: 0;
    margin: 0;
    width: 100%;
}

.main-nav .nav-list li {
    width: 100%;
    margin-bottom: 5px;
}

.main-nav .nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 18px;
    background: var(--white);
    border-radius: 10px;
    color: var(--text-color) !important;
    font-weight: 600;
    font-size: 1rem;
    font-family: var(--font-heading);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    width: 100%;
}

.main-nav .nav-link:hover,
.main-nav .nav-link:focus,
.main-nav .nav-link.active {
    background: var(--primary-color);
    color: var(--white) !important;
    border-color: var(--secondary-color);
    box-shadow: 0 5px 15px rgba(44, 85, 48, 0.2);
}

.main-nav .nav-link i {
    font-size: 1.2rem;
    color: var(--primary-color);
    width: 20px;
    text-align: center;
}

.main-nav .nav-link:hover i,
.main-nav .nav-link:focus i,
.main-nav .nav-link.active i {
    color: var(--white) !important;
}

/* Body scroll engelleme */
body.menu-open {
    overflow: hidden;
}

/* ===== HERO SLIDER ===== */
.hero-slider {
    position: relative;
    height: 500px;
    overflow: hidden;
    margin-bottom: 60px;
    border-radius: var(--border-radius-lg);
}

.slider-container {
    position: relative;
    height: 100%;
    width: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
    visibility: hidden;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 6s ease-out;
    transform: scale(1);
    will-change: transform;
}

.slide.active .slide-img {
    transform: scale(1.1);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    max-width: 600px;
    color: var(--white);
    z-index: 2;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: var(--border-radius);
}

.slide-title {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.slide-text {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Slider Kontroller */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover,
.slider-btn:focus {
    background: rgba(255,255,255,0.3);
    outline: none;
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 30px;
}

.next-btn {
    right: 30px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: var(--transition);
}

.slider-dot:hover,
.slider-dot:focus {
    background: rgba(255,255,255,0.7);
    outline: none;
}

.slider-dot.active {
    background: var(--white);
    transform: scale(1.2);
}

/* ===== RESÄ°MLER Ä°Ã‡Ä°N GENEL STÄ°LLER ===== */
.responsive-img {
    max-width: 100%;
    height: auto;
    display: block;
}

.image-container {
    overflow: hidden;
    border-radius: var(--border-radius);
    position: relative;
}

.image-container img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
    display: block;
}

.image-container:hover img {
    transform: scale(1.05);
}

.content-img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    margin: 20px 0;
}

/* ===== MAIN CONTENT ===== */
.main-content {
    padding: 40px 0 80px;
    flex: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* ===== HAKKIMIZDA SAYFASI ===== */
.page-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 40px 0;
    background: linear-gradient(to right, var(--light-color), #f0ebe3);
    border-radius: var(--border-radius);
}

.page-title {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* HÄ±zlÄ± Navigasyon */
.product-nav {
    margin: 30px 0 40px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 15px;
    position: sticky;
    top: 140px !important;
    z-index: 100;
}

.category-section {
    scroll-margin-top: 240px;
}

.nav-categories {
    display: flex;
    justify-content: center;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.nav-category {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--light-color);
    color: var(--text-color);
    border-radius: 30px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    border: 2px solid transparent;
    text-decoration: none;
    font-family: var(--font-heading);
}

.nav-category i {
    font-size: 1rem;
    color: var(--primary-color);
}

.nav-category:hover,
.nav-category:focus {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 85, 48, 0.2);
    outline: none;
}

.nav-category:hover i,
.nav-category:focus i {
    color: var(--white);
}

.nav-category.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--secondary-color);
}

.nav-category.active i {
    color: var(--white);
}

/* About History */
.about-history {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 30px;
}

.history-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.history-image {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
}

.history-image img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

/* Milestones Timeline */
.milestones-timeline {
    position: relative;
    padding-left: 40px;
}

.milestones-timeline::before {
    content: '';
    position: absolute;
    left: 25px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--secondary-color);
    z-index: 1;
}

.milestone-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    position: relative;
    min-height: 60px;
}

.milestone-year {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 20px;
    flex-shrink: 0;
    position: absolute;
    left: -65px;
    z-index: 3;
    border: 4px solid var(--light-color);
    box-shadow: 0 0 0 3px var(--secondary-color);
    font-size: 0.9rem;
}

.milestone-content {
    flex: 1;
    position: relative;
    z-index: 2;
    background: var(--white);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-left: 0;
    border-left: 4px solid var(--primary-color);
}

.milestone-content h3 {
    margin-bottom: 8px;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.milestone-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Vision Mission Grid */
.vision-mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.vm-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: 2px solid transparent;
}

.vm-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.vm-icon {
    width: 80px;
    height: 80px;
    background: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--primary-color);
}

.vm-features {
    list-style: none;
    margin-top: 20px;
    padding: 0;
}

.vm-features li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    padding-left: 25px;
}

.vm-features li:before {
    content: 'âœ“';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.value-item {
    background: var(--white);
    padding: 25px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: 2px solid transparent;
}

.value-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--primary-color);
}

/* Kalite PolitikasÄ± */
.quality-policy {
    margin-top: 30px;
}

.quality-statement {
    background: var(--light-color);
    padding: 30px;
    border-radius: var(--border-radius);
    margin-bottom: 30px;
    text-align: center;
    font-style: italic;
    font-size: 1.2rem;
    border: 2px solid var(--border-color);
}

.quality-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.quality-item {
    background: var(--white);
    padding: 25px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--box-shadow);
    border: 2px solid transparent;
}

.quality-item:hover {
    border-color: var(--primary-color);
}

.quality-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.quality-item h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

/* Team */
.team-container {
    margin-top: 30px;
}

.team-description {
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.team-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.stat-item {
    background: var(--white);
    padding: 20px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--box-shadow);
    border: 2px solid transparent;
}

.stat-item:hover {
    border-color: var(--primary-color);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-label {
    color: var(--text-light);
    font-size: 0.9rem;
}

.department-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.department {
    background: var(--white);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    border: 2px solid transparent;
}

.department:hover {
    border-color: var(--primary-color);
}

.department h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Social Responsibility */
.social-responsibility {
    background: linear-gradient(to right, var(--primary-color), var(--dark-color));
    color: var(--white);
    padding: 50px;
    border-radius: var(--border-radius);
    margin-top: 40px;
}

.sr-content h2 {
    color: var(--white);
    text-align: center;
    margin-bottom: 20px;
}

.sr-content p {
    text-align: center;
    color: rgba(255,255,255,0.9);
    max-width: 800px;
    margin: 0 auto 30px;
}

.sr-actions {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.sr-action {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.sr-action:hover {
    background: rgba(255, 255, 255, 0.2);
}

.sr-action i {
    font-size: 1.5rem;
    color: var(--secondary-color);
}
/* ===== HÄ°ZMETLER SAYFASI ===== */

/* Service Detail */
.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
}

.service-detail.reverse {
    grid-template-columns: 1fr 1fr;
}

.service-detail.reverse .service-image {
    order: -1;
}

.service-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-image {
    width: 100%;
    height: auto;
}

.service-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow-lg);
}

/* Service Features Grid */
.service-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.feature-item {
    background: var(--light-color);
    padding: 20px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.feature-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.feature-item h4 {
    margin-bottom: 5px;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.feature-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* CNC Capabilities */
.cnc-capabilities {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 20px 0;
}

.capability {
    background: var(--light-color);
    padding: 15px;
    border-radius: var(--border-radius);
}

.capability h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 1rem;
}

.capability p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.cnc-specs {
    margin-top: 20px;
}

.cnc-specs h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.cnc-specs ul {
    list-style: none;
    padding: 0;
}

.cnc-specs li {
    padding: 5px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-light);
}

.cnc-specs li:last-child {
    border-bottom: none;
}

.cnc-specs strong {
    color: var(--primary-color);
}

/* Delivery Services */
.delivery-services {
    margin-top: 20px;
}

.delivery-overview {
    background: var(--light-color);
    padding: 25px;
    border-radius: var(--border-radius);
    margin-bottom: 30px;
    text-align: center;
}

.delivery-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.option-card {
    background: var(--white);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: 2px solid transparent;
}

.option-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.option-icon {
    width: 60px;
    height: 60px;
    background: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.option-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.option-card ul {
    list-style: none;
    padding: 0;
}

.option-card li {
    padding: 5px 0;
    color: var(--text-light);
    font-size: 0.9rem;
    position: relative;
    padding-left: 20px;
}

.option-card li:before {
    content: 'â€¢';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Delivery Coverage */
.delivery-coverage {
    margin-top: 40px;
}

.coverage-map {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.region {
    background: var(--white);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    border: 2px solid transparent;
    transition: var(--transition);
}

.region:hover {
    border-color: var(--primary-color);
}

.region h4 {
    color: var(--primary-color);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.region p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* Consulting Services */
.consulting-services {
    margin-top: 20px;
}

.consulting-intro {
    background: var(--light-color);
    padding: 25px;
    border-radius: var(--border-radius);
    margin-bottom: 30px;
    text-align: center;
}

.consulting-areas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.area-card {
    background: var(--white);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    border: 2px solid transparent;
    transition: var(--transition);
}

.area-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.area-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.area-card ul {
    list-style: none;
    padding: 0;
}

.area-card li {
    padding: 5px 0;
    color: var(--text-light);
    font-size: 0.9rem;
    position: relative;
    padding-left: 20px;
}

.area-card li:before {
    content: 'â€¢';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Process Steps */
.consulting-process {
    margin-top: 40px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.process-step {
    background: var(--white);
    padding: 25px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--box-shadow);
    border: 2px solid transparent;
    transition: var(--transition);
}

.process-step:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin: 0 auto 15px;
}

.process-step h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.process-step p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* Surface Treatments */
.surface-treatments {
    margin-top: 20px;
}

.treatment-overview {
    background: var(--light-color);
    padding: 25px;
    border-radius: var(--border-radius);
    margin-bottom: 30px;
    text-align: center;
}

.treatment-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.treatment-card {
    background: var(--white);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    border: 2px solid transparent;
    transition: var(--transition);
    text-align: center;
}

.treatment-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.treatment-icon {
    width: 60px;
    height: 60px;
    background: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.treatment-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.treatment-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.treatment-card li {
    padding: 5px 0;
    color: var(--text-light);
    font-size: 0.9rem;
    position: relative;
    padding-left: 20px;
}

.treatment-card li:before {
    content: 'â€¢';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.benefit {
    background: var(--white);
    padding: 20px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: 2px solid transparent;
}

.benefit:hover {
    border-color: var(--primary-color);
}

.benefit i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.benefit h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.benefit p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* Service Process Timeline */
.service-process {
    margin-top: 60px;
    padding: 50px 0;
    background: linear-gradient(to right, var(--light-color), #f0ebe3);
    border-radius: var(--border-radius-lg);
}

.process-container {
    max-width: 1000px;
    margin: 0 auto;
}

.service-process .section-title {
    text-align: center;
    margin-bottom: 40px;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.timeline-step {
    background: var(--white);
    padding: 25px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
}

.timeline-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-lg);
}

.timeline-step::before {
    content: '';
    position: absolute;
    top: 40px;
    right: -10px;
    width: 20px;
    height: 2px;
    background: var(--secondary-color);
    z-index: 1;
}

.timeline-step:last-child::before {
    display: none;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.5rem;
    margin: 0 auto 15px;
    box-shadow: 0 4px 15px rgba(44, 85, 48, 0.2);
}

.timeline-step h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.timeline-step p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .service-detail {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-detail.reverse .service-image {
        order: 1;
    }
    
    .service-features-grid,
    .cnc-capabilities {
        grid-template-columns: 1fr;
    }
    
    .delivery-options,
    .consulting-areas,
    .treatment-options,
    .process-steps,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .coverage-map {
        grid-template-columns: 1fr;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .timeline-step::before {
        display: none;
    }
}

/* Additional spacing */
.category-section {
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
}

.category-section:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 40px;
}

/* ===== Ä°LETÄ°ÅÄ°M SAYFASI ===== */
.contact-info-container {
    margin-top: 30px;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.contact-card {
    background: var(--white);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: 2px solid transparent;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-lg);
    border-color: var(--primary-color);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* Form Styles */
.quote-form-container {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-top: 30px;
}

.form-intro {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.form-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.form-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.form-section h3 {
    margin-bottom: 25px;
    color: var(--primary-color);
    padding-left: 15px;
    border-left: 4px solid var(--secondary-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-row .form-group {
    flex: 1;
    margin-bottom: 0;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-color);
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="date"],
textarea,
select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-color);
    background: var(--white);
    transition: var(--transition);
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(44, 85, 48, 0.1);
}

textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group label {
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.error-message {
    color: var(--error-color);
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
}

.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.form-success {
    display: none;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: var(--light-color);
    border-radius: var(--border-radius);
    border: 2px solid var(--success-color);
    margin-top: 30px;
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 0 20px;
    margin-top: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col {
    padding: 0 15px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 50px;
    width: auto;
    max-width: 100%;
    display: block;
}

.footer-logo-text h3 {
    color: var(--white);
    margin-bottom: 5px;
    font-size: 1.5rem;
}

.footer-logo-text p {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

.footer-about {
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-title {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255,255,255,0.1);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    transition: var(--transition);
    display: block;
    padding: 5px 0;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255,255,255,0.8);
}

.contact-item i {
    color: var(--secondary-color);
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: var(--transition);
    animation: pulse 2s infinite;
    border: none;
    cursor: pointer;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .container {
        padding: 0 15px;
    }
    
    .header-content {
        gap: 15px;
        flex-wrap: nowrap;
    }
    
    .logo {
        flex: 1;
        min-width: 0;
    }
    
    .logo img {
        height: 40px;
    }
    
    .logo-main {
        font-size: 1.3rem;
    }
    
    .logo-sub {
        font-size: 0.75rem;
    }
    
    /* MenÃ¼ butonunu gÃ¶ster */
    .menu-toggle {
        display: flex !important;
        order: 2;
        margin-left: 10px;
    }
    
    /* MasaÃ¼stÃ¼ navigasyonu gizle */
    .desktop-nav {
        display: none !important;
    }
    
    .header-contact {
        order: 3;
        margin-left: auto;
    }
    
    .contact-phone .phone-text {
        display: none;
    }
    
    .contact-phone {
        padding: 8px;
        background: var(--light-color);
        border-radius: 8px;
    }
    
    .contact-phone i {
        font-size: 1.2rem;
        color: var(--primary-color);
    }
    
    .hero-slider {
        height: 400px;
    }
    
    .slide-content {
        left: 5%;
        right: 5%;
        max-width: 90%;
    }
    
    .slide-title {
        font-size: 2rem;
    }
    
    .slide-text {
        font-size: 1rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .about-history {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .history-image {
        order: -1;
    }
    
    .milestones-timeline {
        padding-left: 30px;
    }
    
    .milestones-timeline::before {
        left: 15px;
    }
    
    .milestone-year {
        width: 40px;
        height: 40px;
        left: -50px;
        font-size: 0.8rem;
    }
    
    .vision-mission-grid,
    .values-grid,
    .quality-grid {
        grid-template-columns: 1fr;
    }
    
    .team-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sr-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 350px;
    }
    
    .slide-title {
        font-size: 1.6rem;
    }
    
    .page-title {
        font-size: 1.8rem;
    }
    
    .nav-category {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .milestone-year {
        width: 35px;
        height: 35px;
        left: -45px;
    }
    
    .team-stats {
        grid-template-columns: 1fr;
    }
    
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }
    
    /* KÃ¼Ã§Ã¼k ekranlar iÃ§in menÃ¼ butonu */
    .menu-toggle {
        width: 40px;
        height: 40px;
        margin-left: 8px;
    }
    
    .menu-bar {
        width: 20px;
        height: 2.5px;
        margin: 3px 0;
    }
    
    .menu-toggle.active .bar1 {
        transform: rotate(45deg) translate(4px, 4px);
    }
    
    .menu-toggle.active .bar2 {
        opacity: 0;
    }
    
    .menu-toggle.active .bar3 {
        transform: rotate(-45deg) translate(4px, -4px);
    }
}

/* MasaÃ¼stÃ¼ gÃ¶rÃ¼nÃ¼m */
@media (min-width: 992px) {
    .menu-toggle,
    .nav-overlay,
    .main-nav {
        display: none !important;
    }
    
    .desktop-nav {
        display: flex !important;
    }
}
/* Quick Access */
.quick-access {
    margin-bottom: 80px;
}

.access-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.access-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.access-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.access-icon {
    width: 70px;
    height: 70px;
    background: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--primary-color);
}

.access-title {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.access-text {
    color: var(--text-light);
    line-height: 1.6;
}
/* ===== Ã–NE Ã‡IKAN ÃœRÃœNLER ===== */
.featured-products {
    margin-bottom: 60px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.product-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.product-image {
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 25px;
}

.product-title {
    margin-bottom: 10px;
    font-size: 1.3rem;
    color: var(--primary-color);
}

.product-desc {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.5;
}

.text-center {
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .product-image {
        height: 180px;
    }
    
    .product-info {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .product-image {
        height: 160px;
    }
}

/* FAQ (SÄ±k Sorulan Sorular) BÃ¶lÃ¼mÃ¼ DÃ¼zeltmeleri */
.faq-container {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    margin-top: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.faq-intro {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background-color: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    border-color: #d4af37;
}

.faq-question {
    padding: 18px 20px;
    background-color: #fff;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    color: #333;
    border: none;
    width: 100%;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f5f5f5;
}

.faq-question::after {
    content: '\002B'; /* ArtÄ± iÅŸareti */
    font-size: 1.2rem;
    color: #d4af37;
    transition: transform 0.3s ease;
}

.faq-item[open] .faq-question::after {
    content: '\2212'; /* Eksi iÅŸareti */
    transform: rotate(180deg);
}

.faq-answer {
    padding: 20px;
    background-color: #fff;
    border-top: 1px solid #eee;
    line-height: 1.6;
    color: #555;
}

.faq-more {
    text-align: center;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
    margin-top: 20px;
    border: 1px dashed #ddd;
}

.faq-more p {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #333;
}

/* Teknik Destek BÃ¶lÃ¼mÃ¼ DÃ¼zeltmeleri */
.support-channels {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    margin-top: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.channel-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.channel-card {
    background-color: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.channel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border-color: #d4af37;
}

.channel-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.channel-icon i {
    font-size: 30px;
    color: #d4af37;
}

.channel-card h3 {
    margin-bottom: 10px;
    color: #333;
    font-size: 1.3rem;
}

.channel-card p {
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
}

.channel-card .btn {
    margin-top: auto;
}

.support-info {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 25px;
    margin-top: 20px;
}

.support-info h3 {
    margin-bottom: 20px;
    color: #333;
    padding-bottom: 10px;
    border-bottom: 2px solid #d4af37;
}

.support-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.support-area {
    background-color: #fff;
    padding: 20px;
    border-radius: 6px;
    border-left: 4px solid #d4af37;
    transition: all 0.3s ease;
}

.support-area:hover {
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.support-area h4 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.support-area p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Acil Durum BÃ¶lÃ¼mÃ¼ DÃ¼zeltmeleri */
.emergency-contact-section {
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    color: white;
    border-radius: 10px;
    padding: 40px;
    margin-top: 40px;
    text-align: center;
}

.emergency-contact-section h2 {
    color: white;
    margin-bottom: 15px;
    font-size: 2rem;
}

.emergency-contact-section p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.emergency-contacts {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.emergency-contact {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 8px;
    min-width: 250px;
    transition: all 0.3s ease;
}

.emergency-contact:hover {
    background-color: rgba(255,255,255,0.2);
    transform: translateY(-3px);
}

.emergency-contact i {
    font-size: 24px;
    color: white;
}

.emergency-contact h3 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: rgba(255,255,255,0.9);
}

.emergency-contact a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.emergency-contact a:hover {
    color: #f0f0f0;
    text-decoration: underline;
}

/* Responsive DÃ¼zeltmeler */
@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .channel-cards {
        grid-template-columns: 1fr;
    }
    
    .support-details {
        grid-template-columns: 1fr;
    }
    
    .emergency-contacts {
        flex-direction: column;
        gap: 15px;
    }
    
    .emergency-contact {
        min-width: 100%;
    }
    
    .faq-container,
    .support-channels,
    .emergency-contact-section {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .faq-question {
        padding: 15px;
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 15px;
    }
    
    .channel-card {
        padding: 20px;
    }
}
/* SADECE HARÄ°TA VE KONUM BÃ–LÃœMÃœ DÃœZELTMESÄ° */
.map-container {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-top: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.map-info {
    padding: 30px;
    background-color: #f9f9f9;
    border-right: 1px solid #eee;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.map-info h3 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.4rem;
    padding-bottom: 10px;
    border-bottom: 2px solid #d4af37;
}

.transport-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.transport-option {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background-color: #fff;
    border-radius: 8px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.transport-option:hover {
    border-color: #d4af37;
    box-shadow: 0 3px 8px rgba(0,0,0,0.05);
}

.transport-option i {
    font-size: 24px;
    color: #d4af37;
    min-width: 30px;
    text-align: center;
    padding-top: 3px;
}

.transport-option h4 {
    color: #333;
    margin-bottom: 5px;
    font-size: 1.1rem;
    font-weight: 600;
}

.transport-option p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.parking-info {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    border: 1px solid #eee;
    margin-top: 10px;
}

.parking-info h4 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 600;
}

.parking-info ul {
    list-style-type: none;
    padding-left: 0;
    margin: 0;
}

.parking-info li {
    color: #666;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    line-height: 1.5;
    font-size: 0.95rem;
}

.parking-info li:before {
    content: "âœ“";
    position: absolute;
    left: 0;
    color: #d4af37;
    font-weight: bold;
    font-size: 1.1rem;
}

.map-embed {
    height: 400px;
}

.map-embed iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* MOBÄ°L DÃœZENLEME */
@media (max-width: 992px) {
    .map-container {
        grid-template-columns: 1fr;
    }
    
    .map-info {
        border-right: none;
        border-bottom: 1px solid #eee;
    }
    
    .map-embed {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .map-info {
        padding: 20px;
    }
    
    .transport-option {
        padding: 12px;
    }
    
    .parking-info {
        padding: 15px;
    }
}
/* ===== ÃœRÃœNLER SAYFASI E ===== */

/* ÃœrÃ¼n Grid DÃ¼zeni */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

/* ÃœrÃ¼n KartÄ± */
.product-item {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: 2px solid transparent;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    border-color: var(--primary-color);
}

/* ÃœrÃ¼n GÃ¶rseli */
.product-img {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.product-item:hover .product-img img {
    transform: scale(1.05);
}

/* GÃ¶rsel placeholder (resim yoksa) */
.img-placeholder {
    width: 100%;
    height: 200px;
    background: var(--light-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 3rem;
}

/* ÃœrÃ¼n DetaylarÄ± */
.product-details {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-link {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.product-link:hover {
    color: var(--secondary-color);
}

.product-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    line-height: 1.3;
}

/* ÃœrÃ¼n Ã–zellikleri */
.product-specs {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 0.95rem;
    flex: 1;
}

.product-specs strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* ÃœrÃ¼n AÃ§Ä±klamasÄ± */
.product-desc {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

/* Buton */
.product-item .btn {
    margin-top: auto;
    align-self: flex-start;
}

/* DiÄŸer BÃ¶lÃ¼mler iÃ§in Grid'ler */
.specs-grid,
.parke-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.spec-item,
.parke-item {
    background: var(--white);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

.spec-item:hover,
.parke-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.spec-item i,
.parke-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.spec-item h3,
.parke-item h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.spec-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    flex: 1;
}

.spec-list li {
    padding: 5px 0;
    border-bottom: 1px dashed var(--border-color);
    color: var(--text-color);
}

.spec-list li:last-child {
    border-bottom: none;
}

.parke-item ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    flex: 1;
}

.parke-item li {
    padding: 5px 0;
    color: var(--text-color);
    border-bottom: 1px dashed var(--border-color);
}

.parke-item li strong {
    color: var(--primary-color);
    min-width: 70px;
    display: inline-block;
}

.parke-item li:last-child {
    border-bottom: none;
}

/* KarÅŸÄ±laÅŸtÄ±rma BÃ¶lÃ¼mÃ¼ */
.product-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.comparison-item {
    background: var(--white);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    border: 2px solid transparent;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.comparison-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.comparison-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.comparison-item ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    flex: 1;
}

.comparison-item li {
    padding: 5px 0;
    color: var(--text-color);
    border-bottom: 1px dashed var(--border-color);
}

.comparison-item li strong {
    color: var(--primary-color);
    min-width: 90px;
    display: inline-block;
}

.comparison-item li:last-child {
    border-bottom: none;
}

.comparison-item .btn {
    margin-top: auto;
    align-self: flex-start;
}

/* Teknik Destek BÃ¶lÃ¼mÃ¼ */
.tech-support {
    background: linear-gradient(135deg, var(--primary-color), #234026);
    color: white;
    padding: 50px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    margin-top: 60px;
}

.tech-support h2 {
    color: white;
    margin-bottom: 15px;
}

.tech-support p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.tech-support .btn {
    background: var(--white);
    color: var(--primary-color);
}

.tech-support .btn:hover {
    background: var(--light-color);
    transform: translateY(-2px);
}

/* Responsive DÃ¼zenlemeler */
@media (max-width: 992px) {
    .category-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
    
    .specs-grid,
    .parke-grid,
    .product-comparison {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .category-grid {
        grid-template-columns: 1fr;
    }
    
    .product-item {
        margin-bottom: 20px;
    }
    
    .specs-grid,
    .parke-grid,
    .product-comparison {
        grid-template-columns: 1fr;
    }
    
    .tech-support {
        padding: 30px 20px;
        margin-top: 40px;
    }
}

@media (max-width: 480px) {
    .product-img,
    .img-placeholder {
        height: 180px;
    }
    
    .product-details {
        padding: 20px;
    }
    
    .product-item h3 {
        font-size: 1.2rem;
    }
    
    .product-specs,
    .product-desc {
        font-size: 0.9rem;
    }
    
    .spec-item,
    .parke-item,
    .comparison-item {
        padding: 20px;
    }
}
/* ===== GÃœVENÄ°LEN MARKALAR ===== */
.trusted-brands {
    background-color: var(--white);
    padding: 60px 0 40px 0;
    margin: 40px 0 30px 0;
    position: relative;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.trusted-brands .section-header {
    margin-bottom: 40px;
}

.trusted-brands .section-title {
    color: var(--primary-color);
    font-size: 2rem;
    text-align: center;
}

.trusted-brands .section-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

/* Brands container - overflow: hidden SADECE BURADA OLSUN */
.brands-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

/* Slider wrapper */
.brand-slider-wrapper {
    position: relative;
    padding: 10px 0;
}

/* Slider track - SORUNSUZ KAYDIRMA Ä°Ã‡Ä°N */
.brand-slider-track {
    display: flex;
    animation: slideBrands 40s linear infinite; /* BaÅŸlangÄ±Ã§ hÄ±zÄ±: 40s */
    gap: 40px;
    padding: 20px 0;
    width: max-content;
}

/* Hover'da animasyonu durdur */
.brands-container:hover .brand-slider-track {
    animation-play-state: paused;
}

/* Marka item'larÄ± */
.brand-item {
    flex: 0 0 auto;
    min-width: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

/* Marka logo kartÄ± */
.brand-logo {
    background: var(--light-color);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 140px;
    position: relative;
}

.brand-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(44, 85, 48, 0.15);
    border-color: var(--primary-color);
    background-color: var(--white);
}

/* Logo resimleri */
.brand-logo img {
    max-width: 120px;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: all 0.3s ease;
    margin-bottom: 10px;
}

.brand-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* Marka isimleri */
.brand-name {
    font-size: 0.85rem;
    color: var(--text-color);
    font-weight: 600;
    text-align: center;
    margin-top: 8px;
    transition: color 0.3s ease;
    font-family: var(--font-heading);
}

.brand-logo:hover .brand-name {
    color: var(--primary-color);
}

/* ===== YENÄ° ANÄ°MASYON - SORUNSUZ KAYDIRMA ===== */
@keyframes slideBrands {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%); /* Tam yarÄ±sÄ± kadar kaydÄ±r */
    }
}

/* PERFORMANS Ä°YÄ°LEÅTÄ°RMELERÄ° */
.brand-slider-track {
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* HIZ KONTROLÃœ Ä°Ã‡Ä°N FARKLI DURUMLAR */
.brand-slider-track.fast {
    animation-duration: 20s !important;
}

.brand-slider-track.medium {
    animation-duration: 30s !important;
}

.brand-slider-track.slow {
    animation-duration: 50s !important;
}

/* ===== RESPONSIVE DÃœZENLEMELER ===== */

/* Desktop */
@media (min-width: 1200px) {
    .brand-item {
        min-width: 200px;
    }
    
    .brand-logo {
        width: 200px;
        height: 150px;
    }
    
    .brand-logo img {
        max-width: 140px;
        max-height: 70px;
    }
}

/* Tablet */
@media (max-width: 1199px) and (min-width: 768px) {
    .brand-slider-track {
        animation-duration: 35s;
        gap: 30px;
    }
    
    .brand-item {
        min-width: 160px;
    }
    
    .brand-logo {
        width: 160px;
        height: 130px;
        padding: 20px;
    }
    
    .brand-logo img {
        max-width: 100px;
        max-height: 50px;
    }
    
    .brand-name {
        font-size: 0.8rem;
    }
}

/* Mobil */
@media (max-width: 767px) {
    .trusted-brands {
        padding: 40px 0 30px 0;
        margin: 30px 0 20px 0;
        border-radius: var(--border-radius);
    }
    
    .trusted-brands .section-title {
        font-size: 1.7rem;
    }
    
    .trusted-brands .section-subtitle {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .brand-slider-track {
        animation-duration: 30s;
        gap: 20px;
        padding: 15px 0;
    }
    
    .brand-item {
        min-width: 140px;
    }
    
    .brand-logo {
        width: 140px;
        height: 120px;
        padding: 15px;
    }
    
    .brand-logo img {
        max-width: 90px;
        max-height: 45px;
    }
    
    .brand-name {
        font-size: 0.75rem;
        margin-top: 6px;
    }
}

/* KÃ¼Ã§Ã¼k Mobil */
@media (max-width: 480px) {
    .trusted-brands {
        padding: 30px 0 20px 0;
        margin: 20px 0 15px 0;
    }
    
    .trusted-brands .section-title {
        font-size: 1.5rem;
    }
    
    .trusted-brands .section-subtitle {
        font-size: 0.9rem;
    }
    
    .brand-slider-track {
        animation-duration: 25s;
        gap: 15px;
    }
    
    .brand-item {
        min-width: 120px;
    }
    
    .brand-logo {
        width: 120px;
        height: 110px;
        padding: 12px;
    }
    
    .brand-logo img {
        max-width: 80px;
        max-height: 40px;
    }
    
    .brand-name {
        font-size: 0.7rem;
    }
}

/* ===== Ã–ZEL DURUMLAR ===== */

/* Reduced motion iÃ§in */
@media (prefers-reduced-motion: reduce) {
    .brand-slider-track {
        animation: none !important;
        justify-content: center;
        flex-wrap: wrap;
        width: 100% !important;
        gap: 20px;
        padding: 15px;
        transform: none !important;
    }
    
    /* Duplicate markalarÄ± gizle */
    .brand-item:nth-child(n+7) {
        display: none !important;
    }
}

/* Koyu tema desteÄŸi */
@media (prefers-color-scheme: dark) {
    .trusted-brands {
        background-color: #FFFFFF;
        border-color: #FFFFFF;
    }
    
    .brand-logo {
        background-color: #FFFFFF;
    }
    
    .brand-logo:hover {
        background-color: #FFFFFF;
    }
    
    .brand-logo img {
        filter: grayscale(100%) brightness(1.5);
    }
    
    .brand-logo:hover img {
        filter: grayscale(0%) brightness(1.2);
    }
    
    .brand-name {
        color: #ddd;
    }
    
    .brand-logo:hover .brand-name {
        color: var(--secondary-color);
    }
}

/* ===== HIZ KONTROL BUTONLARI (Ä°steÄŸe baÄŸlÄ±) ===== */
.brand-speed-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 25px;
    padding: 10px;
}

.brand-speed-controls span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.brand-speed-btn {
    background: var(--light-color);
    border: 1px solid var(--border-color);
    color: var(--text-color);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.brand-speed-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.brand-speed-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.brand-speed-btn i {
    font-size: 0.8rem;
}
/* ===== GÄ°ZLÄ°LÄ°K POLÄ°TÄ°KASI SAYFASI Ã–ZEL STÄ°LLERÄ° ===== */
.privacy-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a3a1e 100%);
    padding: 60px 0;
    margin-bottom: 40px;
    border-radius: var(--border-radius-lg);
    color: var(--white);
    text-align: center;
}

.privacy-hero h1 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.privacy-hero p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.privacy-container {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--box-shadow);
    margin-bottom: 40px;
}

.privacy-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.privacy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.privacy-section h2 {
    color: var(--primary-color);
    font-size: 1.6rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--secondary-color);
    display: inline-block;
}

.privacy-section h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin: 25px 0 15px 0;
}

.privacy-section p {
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 15px;
}

.privacy-section ul, 
.privacy-section ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.privacy-section li {
    color: var(--text-color);
    margin-bottom: 10px;
    line-height: 1.6;
}

.privacy-highlight {
    background: var(--light-color);
    padding: 25px;
    border-radius: var(--border-radius);
    border-left: 5px solid var(--secondary-color);
    margin: 25px 0;
}

.privacy-highlight h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.privacy-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.privacy-table th {
    background: var(--primary-color);
    color: var(--white);
    padding: 12px;
    text-align: left;
    font-weight: 600;
}

.privacy-table td {
    padding: 12px;
    border: 1px solid var(--border-color);
    color: var(--text-color);
}

.privacy-table tr:nth-child(even) {
    background: var(--light-color);
}

.privacy-badge {
    display: inline-block;
    padding: 8px 16px;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-right: 10px;
    margin-bottom: 10px;
}

.privacy-footer {
    margin-top: 40px;
    padding: 30px;
    background: var(--light-color);
    border-radius: var(--border-radius);
    text-align: center;
}

.privacy-footer h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.privacy-footer .btn {
    margin: 10px;
}

.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(44, 85, 48, 0.3);
    transition: var(--transition);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
}

.back-to-top:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
    color: var(--white);
}

/* Responsive */
@media (max-width: 768px) {
    .privacy-hero {
        padding: 40px 0;
    }
    
    .privacy-hero h1 {
        font-size: 2rem;
    }
    
    .privacy-container {
        padding: 25px;
    }
    
    .privacy-section h2 {
        font-size: 1.4rem;
    }
    
    .privacy-table {
        display: block;
        overflow-x: auto;
    }
    
    .back-to-top {
        bottom: 90px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .privacy-hero h1 {
        font-size: 1.6rem;
    }
    
    .privacy-container {
        padding: 20px;
    }
    
    .privacy-highlight {
        padding: 20px;
    }
}
/* ===== BRAND SLIDER ===== */

.brand-slider {
    margin: 80px 0;
    overflow: hidden;
}

.brands-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.brands-track {
    display: flex;
    align-items: center;
    gap: 60px;
    width: max-content;
    animation: scrollBrands 25s linear infinite;
}

.brand-item {
    flex: 0 0 auto;
    background: var(--white);
    padding: 25px 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-item img {
    max-height: 60px;
    width: auto;
    filter: grayscale(100%);
    transition: 0.3s;
}

.brand-item:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

@keyframes scrollBrands {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}


/* ÃœRÃœN DETAY SAYFASI STÄ°LLERÄ° - YEÅÄ°L TONLARI */

/* Breadcrumb - YeÅŸil Gradyan */
.page-breadcrumb {
    background: linear-gradient(#17451a 100%);
    padding: 20px 0;
    margin-bottom: 40px;
    color: white;
}

.breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
    margin-right: 10px;
    color: rgba(255,255,255,0.9);
}

.breadcrumb-list li:not(:last-child):after {
    content: '/';
    margin-left: 10px;
    color: rgba(255,255,255,0.7);
}

.breadcrumb-list a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

.breadcrumb-list a:hover {
    color: #ffd700;
    text-decoration: underline;
}

.breadcrumb-list .active {
    color: white;
    font-weight: 600;
}

/* ÃœrÃ¼n Detay Layout */
.product-detail-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 60px;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    position: relative; /* Mobil iÃ§in ekledim */
    overflow: hidden; /* TaÅŸmayÄ± Ã¶nler */
}

@media (min-width: 992px) {
    .product-detail-container {
        grid-template-columns: 1fr 1fr;
    }
}

/* ÃœrÃ¼n GÃ¶rselleri */
.product-images {
    position: relative; /* Mobilde sticky kaldÄ±rÄ±ldÄ± */
    width: 100%;
}

@media (min-width: 992px) {
    .product-images {
        position: sticky;
        top: 20px;
        height: fit-content;
    }
}

.product-main-image-container {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 20px;
}

.product-main-image {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.2);
    transition: transform 0.3s;
    border: 1px solid #e0f7e9;
    background: #f8fff9;
}

.product-main-image:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(46, 204, 113, 0.3);
}

@media (max-width: 768px) {
    .product-main-image {
        max-height: 300px;
        object-fit: contain;
    }
}

.product-thumbnails {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding: 15px 0;
    scrollbar-width: thin;
}

.thumbnail-btn {
    flex: 0 0 auto;
    width: 100px;
    height: 100px;
    border: 2px solid #dee2e6;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    padding: 0;
    background: white;
    transition: all 0.3s ease;
}

.thumbnail-btn:hover,
.thumbnail-btn.active {
    border-color: #27ae60;
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(39, 174, 96, 0.2);
}

.thumbnail-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ÃœrÃ¼n Bilgileri */
.product-info {
    padding: 0;
    width: 100%;
}

@media (min-width: 992px) {
    .product-info {
        padding: 20px 0;
    }
}

.product-header {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e0f7e9;
}

.product-title {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 10px;
    line-height: 1.2;
    font-weight: 700;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.product-category-badge {
    display: inline-block;
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.product-description {
    color: #34495e;
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 1.1rem;
    padding: 20px;
    background: #f8fff9;
    border-radius: 8px;
    border-left: 4px solid #27ae60;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* ÃœrÃ¼n Ã–zellikleri */
.product-specifications {
    background: white;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 3px 15px rgba(39, 174, 96, 0.08);
    border: 1px solid #e0f7e9;
}

.section-title {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #27ae60;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title i {
    color: #27ae60;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 15px;
    border-bottom: 1px solid #e9f7ed;
    background: #f8fff9;
    border-radius: 6px;
    transition: all 0.3s;
}

.spec-item:hover {
    transform: translateX(5px);
    background: #e9f7ed;
    box-shadow: 0 2px 8px rgba(39, 174, 96, 0.1);
}

.spec-label {
    font-weight: 600;
    color: #34495e;
}

.spec-value {
    color: #27ae60;
    font-weight: 500;
    text-align: right;
}

/* Ã–zellikler Listesi */
.product-features {
    background: white;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 3px 15px rgba(39, 174, 96, 0.08);
    border: 1px solid #e0f7e9;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    padding: 12px 0;
    padding-left: 35px;
    position: relative;
    color: #34495e;
    border-bottom: 1px solid #f8fff9;
}

.features-list li:last-child {
    border-bottom: none;
}

.features-list li i {
    position: absolute;
    left: 0;
    top: 14px;
    color: #27ae60;
    font-size: 1.2rem;
}

/* Fiyat ve Eylem ButonlarÄ± */
.product-price-section {
    background: linear-gradient(135deg, #f8fff9 0%, #e9f7ed 100%);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 25px;
    border: 1px solid #d0f0d0;
    max-width: 100%;
    overflow: hidden;
}

.price-info {
    margin-bottom: 25px;
    text-align: center;
}

.price-label {
    font-size: 1rem;
    color: #7f8c8d;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.price-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 10px;
}

.price-note {
    font-size: 0.9rem;
    color: #7f8c8d;
    font-style: italic;
    word-wrap: break-word;
}

.product-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

/* Butonlar - YeÅŸil Tema */
.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 8px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: white;
}

.btn-primary {
    background: linear-gradient(135deg, #27ae60 0%, #219a52 100%);
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 8px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.4);
    color: white;
}

.btn-secondary {
    background: linear-gradient(135deg, #95a5a6 0%, #7f8c8d 100%);
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 8px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(149, 165, 166, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(149, 165, 166, 0.4);
    color: white;
}

/* Uygulama AlanlarÄ± */
.applications-section {
    background: white;
    padding: 40px;
    border-radius: 10px;
    margin: 40px 0;
    box-shadow: 0 5px 20px rgba(39, 174, 96, 0.1);
    border: 1px solid #e0f7e9;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-subtitle {
    color: #7f8c8d;
    font-size: 1.1rem;
    margin-top: 10px;
}

.applications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.application-item {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, #f8fff9 0%, #e9f7ed 100%);
    border-radius: 10px;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.application-item:hover {
    transform: translateY(-5px);
    border-color: #27ae60;
    box-shadow: 0 10px 25px rgba(39, 174, 96, 0.1);
}

.application-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #27ae60 0%, #219a52 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.application-icon i {
    font-size: 1.8rem;
    color: white;
}

.application-item h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.application-item p {
    color: #7f8c8d;
    line-height: 1.6;
}

/* Teknik Destek Formu */
.tech-support-form {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    padding: 50px;
    border-radius: 15px;
    margin: 40px 0;
    color: white;
}

.tech-support-form .section-title,
.tech-support-form .section-subtitle {
    color: white;
}

#techSupportForm {
    background: white;
    padding: 40px;
    border-radius: 10px;
    margin-top: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #34495e;
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #d5e8d5;
    border-radius: 6px;
    font-size: 1rem;
    transition: all 0.3s;
    background: #f8fff9;
}

.form-control:focus {
    border-color: #27ae60;
    background: white;
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(39, 174, 96, 0.25);
}

/* Benzer ÃœrÃ¼nler */
.similar-products {
    background: white;
    padding: 40px;
    border-radius: 10px;
    margin-top: 60px;
    border: 2px solid #e0f7e9;
}

.similar-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(39, 174, 96, 0.1);
    transition: all 0.3s;
    border: 1px solid #e0f7e9;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(39, 174, 96, 0.15);
}

.product-card-img {
    height: 200px;
    overflow: hidden;
}

.product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.product-card:hover .product-card-img img {
    transform: scale(1.1);
}

.product-card-content {
    padding: 25px;
}

.product-card-content h3 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 15px;
    height: 60px;
    overflow: hidden;
}

.product-card-desc {
    color: #7f8c8d;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 15px;
    height: 70px;
    overflow: hidden;
}

.product-card-specs {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
    padding: 15px;
    background: #f8fff9;
    border-radius: 6px;
}

.product-card-specs span {
    font-size: 0.9rem;
    color: #34495e;
}

.product-card .btn-secondary {
    width: 100%;
    padding: 12px;
    font-size: 0.95rem;
}

/* ÃœrÃ¼n BulunamadÄ± */
.not-found {
    text-align: center;
    padding: 100px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(39, 174, 96, 0.1);
    margin: 50px 0;
    border: 1px solid #e0f7e9;
}

.not-found i {
    font-size: 5rem;
    color: #27ae60;
    margin-bottom: 30px;
    opacity: 0.7;
}

.not-found p {
    font-size: 1.3rem;
    color: #34495e;
    margin-bottom: 20px;
}

.not-found a {
    color: #27ae60;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

.not-found a:hover {
    text-decoration: underline;
    color: #219a52;
}

/* Responsive DÃ¼zenlemeler - GÃœNCELLENDÄ° */
@media (max-width: 991px) {
    .product-detail-container {
        display: flex;
        flex-direction: column;
        gap: 30px;
        padding: 15px;
        margin-top: 15px;
    }
    
    .product-images {
        order: 1;
        width: 100%;
        position: relative;
        top: 0;
    }
    
    .product-info {
        order: 2;
        width: 100%;
        padding: 0;
    }
    
    .product-title {
        font-size: 1.6rem;
        line-height: 1.3;
    }
    
    .product-description {
        font-size: 1rem;
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .product-main-image {
        height: auto;
        max-height: 350px;
    }
}

@media (max-width: 768px) {
    .product-detail-container {
        gap: 20px;
        padding: 15px;
    }
    
    .product-title {
        font-size: 1.5rem;
    }
    
    .product-main-image {
        max-height: 300px;
    }
    
    .thumbnail-btn {
        width: 80px;
        height: 80px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .product-actions {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .product-actions .btn {
        width: 100%;
        text-align: center;
        padding: 14px;
    }
    
    .applications-grid {
        grid-template-columns: 1fr;
    }
    
    .similar-products-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-support-form {
        padding: 25px 15px;
    }
    
    #techSupportForm {
        padding: 20px 15px;
    }
    
    .product-specifications,
    .product-features {
        padding: 20px 15px;
    }
    
    .specs-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .product-detail-container {
        padding: 10px;
        margin-top: 10px;
    }
    
    .product-title {
        font-size: 1.3rem;
        margin-bottom: 8px;
    }
    
    .product-main-image {
        max-height: 250px;
    }
    
    .product-category-badge {
        font-size: 0.8rem;
        padding: 5px 12px;
    }
    
    .product-description {
        font-size: 0.95rem;
        padding: 12px;
        line-height: 1.6;
    }
    
    .thumbnail-btn {
        width: 70px;
        height: 70px;
    }
    
    .price-value {
        font-size: 2rem;
    }
}

/* Loading Stilleri */
.loading-specs {
    padding: 20px;
    text-align: center;
    color: #7f8c8d;
    font-style: italic;
}

.fa-spinner {
    color: #27ae60;
    margin-right: 10px;
}

/* Scrollbar stilleri */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f8e9;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: #a5d6a7;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #81c784;
}

/* Ek gÃ¼venlik kurallarÄ± */
@media (max-width: 768px) {
    .product-detail-container > * {
        max-width: 100%;
        overflow: hidden;
    }
    
    .product-info > * {
        position: relative;
        z-index: 1;
    }
}
/* ===== GENEL MOBÄ°L STÄ°LLER ===== */

/* Resimler iÃ§in responsive stiller */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

.content-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

.grid-img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* ===== HAKKIMIZDA SAYFASI HIZLI NAVÄ°GASYON RESPONSIVE ===== */
@media (max-width: 767px) {
    .product-nav {
        margin: 20px 0 30px !important;
        padding: 12px !important;
        position: static !important;
        background: var(--white, #fff);
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    .nav-categories {
        gap: 8px !important;
        justify-content: flex-start !important;
        overflow-x: auto !important;
        padding-bottom: 5px !important;
        scrollbar-width: thin;
        scrollbar-color: var(--primary-color, #2c5530) var(--light-color, #f8f5f0);
    }
    
    .nav-categories::-webkit-scrollbar {
        height: 6px !important;
    }
    
    .nav-categories::-webkit-scrollbar-track {
        background: var(--light-color, #f8f5f0) !important;
        border-radius: 10px !important;
    }
    
    .nav-categories::-webkit-scrollbar-thumb {
        background: var(--primary-color, #2c5530) !important;
        border-radius: 10px !important;
    }
    
    .nav-category {
        padding: 10px 16px !important;
        font-size: 0.9rem !important;
        white-space: nowrap !important;
        flex-shrink: 0 !important;
        background: var(--light-color, #f8f5f0);
        border: 2px solid transparent;
    }
    
    .nav-category i {
        font-size: 0.9rem !important;
    }
    
    .nav-category.active {
        background: var(--primary-color, #2c5530);
        color: var(--white, #fff);
        border-color: var(--secondary-color, #d4a55c);
    }
}

@media (max-width: 480px) {
    .product-nav {
        margin: 15px 0 25px !important;
        padding: 10px !important;
    }
    
    .nav-categories {
        gap: 6px !important;
    }
    
    .nav-category {
        padding: 8px 14px !important;
        font-size: 0.85rem !important;
    }
    
    .nav-category i {
        font-size: 0.85rem !important;
    }
}

/* ===== MOBÄ°L (max-width: 767px) ===== */
@media (max-width: 767px) {
    /* Container padding */
    .container {
        padding: 0 15px;
    }
    
    /* Header dÃ¼zenlemeleri */
    .header {
        padding: 10px 0;
    }
    
    .header-content {
        flex-wrap: nowrap;
        gap: 10px;
        position: relative;
    }
    
    .logo {
        flex: 1;
        min-width: 0;
        order: 1;
    }
    
    .logo img {
        height: 40px;
    }
    
    .logo-main {
        font-size: 1.2rem;
    }
    
    .logo-sub {
        font-size: 0.75rem;
    }
    
    /* MenÃ¼ butonu */
    .menu-toggle {
        order: 2;
        margin-left: 10px;
        width: 40px;
        height: 40px;
        display: flex !important;
    }
    
    /* Ä°letiÅŸim bilgisi */
    .header-contact {
        order: 3;
        margin-left: auto;
    }
    
    .contact-phone {
        padding: 8px 12px;
        background: var(--light-color);
        border-radius: 8px;
    }
    
    .phone-text {
        display: none;
    }
    
    .contact-phone i {
        font-size: 1.2rem;
        color: var(--primary-color);
    }
    
    /* Hero Slider mobil dÃ¼zenlemeleri */
    .hero-slider {
        height: 350px;
        margin-bottom: 30px;
    }
    
    .slide-content {
        left: 5%;
        right: 5%;
        padding: 20px;
        max-width: 90%;
        background: rgba(0, 0, 0, 0.5);
        border-radius: 10px;
    }
    
    .slide-title {
        font-size: 1.8rem;
        margin-bottom: 10px;
        text-align: center;
    }
    
    .slide-text {
        font-size: 1rem;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        background: rgba(255, 255, 255, 0.3);
    }
    
    .prev-btn {
        left: 10px;
    }
    
    .next-btn {
        right: 10px;
    }
    
    .slider-dots {
        bottom: 15px;
    }
    
    /* HakkÄ±mÄ±zda sayfasÄ± mobil dÃ¼zenlemeleri */
    .page-header {
        padding: 30px 0 20px;
        margin-bottom: 20px;
        background: linear-gradient(to right, var(--light-color), #f0ebe3);
    }
    
    .page-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .page-subtitle {
        font-size: 1rem;
        padding: 0 10px;
        text-align: center;
    }
    
    .about-history {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 20px;
    }
    
    .history-image {
        order: -1;
    }
    
    .history-image img {
        max-height: 300px;
        width: 100%;
        border-radius: 10px;
    }
    
    /* TÄ°MELÄ°NE DÃœZELTMELERÄ° */
    .milestones-timeline {
        padding-left: 30px !important;
        margin-top: 20px;
    }
    
    .milestones-timeline::before {
        left: 15px !important;
        width: 3px;
        background: var(--secondary-color, #d4a55c);
    }
    
    .milestone-item {
        flex-direction: row;
        align-items: flex-start;
        gap: 0;
        padding-left: 0;
        margin-bottom: 25px;
        min-height: 60px;
    }
    
    .milestone-year {
        width: 40px;
        height: 40px;
        margin-right: 0;
        position: absolute;
        left: -55px !important;
        font-size: 0.85rem;
        border: 3px solid var(--white, #fff) !important;
        box-shadow: 0 0 0 2px var(--secondary-color, #d4a55c) !important;
        background: var(--primary-color, #2c5530);
        color: var(--white, #fff);
        z-index: 2;
    }
    
    .milestone-content {
        padding: 15px;
        margin-left: 0;
        margin-top: 0;
        box-shadow: 0 2px 10px rgba(0,0,0,0.08);
        border-left: 4px solid var(--primary-color, #2c5530);
        background: var(--white, #fff);
        border-radius: 0 8px 8px 0;
    }
    
    .milestone-content h3 {
        font-size: 1.1rem;
        margin-bottom: 5px;
        color: var(--primary-color, #2c5530);
    }
    
    .milestone-content p {
        font-size: 0.9rem;
        color: var(--text-light, #666);
    }
    
    .vision-mission-grid,
    .values-grid,
    .quality-grid,
    .department-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .vm-card,
    .value-item,
    .quality-item,
    .department {
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    }
    
    .team-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin: 20px 0;
    }
    
    .stat-item {
        padding: 15px;
        text-align: center;
        background: var(--white, #fff);
        border-radius: 10px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }
    
    .social-responsibility {
        padding: 25px 15px;
        margin: 30px -15px 0;
        border-radius: 0;
    }
    
    .sr-actions {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .sr-action {
        width: 100%;
        justify-content: center;
        padding: 10px;
        background: rgba(255,255,255,0.1);
        border-radius: 8px;
    }
    
    /* Main content padding */
    .main-content {
        padding: 0 0 40px;
    }
    
    .category-section {
        margin-bottom: 40px;
        padding-bottom: 30px;
    }
    
    .category-title {
        font-size: 1.5rem;
        padding-left: 15px;
        margin-bottom: 20px;
        border-left: 4px solid var(--secondary-color, #d4a55c);
    }
    
    /* Footer mobil dÃ¼zenlemeleri */
    .footer {
        padding: 40px 0 20px;
        margin-top: 40px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-col {
        padding: 0;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
        margin-bottom: 15px;
    }
    
    .social-links {
        justify-content: center;
        margin-top: 15px;
    }
    
    .contact-item {
        justify-content: center;
        text-align: center;
        margin-bottom: 10px;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-links li {
        margin-bottom: 8px;
    }
    
    /* Ä°letiÅŸim sayfasÄ± Ã¶zel dÃ¼zenlemeleri */
    .contact-cards {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .contact-card {
        padding: 20px !important;
    }
    
    .map-container {
        flex-direction: column !important;
        gap: 20px !important;
    }
    
    .map-embed iframe {
        height: 300px !important;
    }
    
    .form-row {
        flex-direction: column !important;
        gap: 15px !important;
    }
    
    .faq-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
    
    .support-channels .channel-cards {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .emergency-contacts {
        flex-direction: column !important;
        gap: 15px !important;
    }
    
    .emergency-contact {
        min-width: 100%;
    }
    
    .faq-container,
    .support-channels,
    .emergency-contact-section {
        padding: 20px;
    }
}

/* ===== KÃœÃ‡ÃœK MOBÄ°L (max-width: 480px) ===== */
@media (max-width: 480px) {
    .menu-toggle {
        margin-left: 8px;
        width: 36px;
        height: 36px;
        display: flex !important;
    }
    
    .menu-bar {
        height: 2.5px;
        width: 20px;
        margin: 3px 0;
    }
    
    .menu-toggle.active .bar1 {
        transform: rotate(45deg) translate(3px, 3px);
    }
    
    .menu-toggle.active .bar3 {
        transform: rotate(-45deg) translate(3px, -3px);
    }
    
    .hero-slider {
        height: 300px;
    }
    
    .slide-title {
        font-size: 1.5rem;
    }
    
    .slide-text {
        font-size: 0.9rem;
    }
    
    .page-title {
        font-size: 1.8rem;
    }
    
    .category-title {
        font-size: 1.4rem;
    }
    
    /* TÄ°MELÄ°NE DÃœZELTMELERÄ° */
    .milestones-timeline {
        padding-left: 25px !important;
    }
    
    .milestones-timeline::before {
        left: 12px !important;
        width: 2px;
    }
    
    .milestone-item {
        margin-bottom: 20px;
        min-height: 50px;
    }
    
    .milestone-year {
        width: 35px;
        height: 35px;
        left: -45px !important;
        font-size: 0.8rem;
        border: 2px solid var(--white, #fff) !important;
        box-shadow: 0 0 0 2px var(--secondary-color, #d4a55c) !important;
    }
    
    .milestone-content {
        padding: 12px;
        border-left-width: 3px;
    }
    
    .milestone-content h3 {
        font-size: 1rem;
    }
    
    .milestone-content p {
        font-size: 0.85rem;
    }
    
    .team-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-item {
        padding: 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
    }
    
    /* HakkÄ±mÄ±zda sayfasÄ± ek kÃ¼Ã§Ã¼k ekran dÃ¼zenlemeleri */
    .quality-statement {
        padding: 15px;
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .vm-card,
    .value-item,
    .quality-item,
    .department {
        padding: 15px;
    }
    
    .social-responsibility {
        padding: 20px 15px;
    }
    
    .sr-content h2 {
        font-size: 1.5rem;
    }
    
    .sr-content p {
        font-size: 0.9rem;
    }
}

/* ===== Ã‡OK KÃœÃ‡ÃœK EKRANLAR Ä°Ã‡Ä°N EK DÃœZENLEME ===== */
@media (max-width: 380px) {
    .menu-toggle {
        margin-left: 5px;
        width: 34px;
        height: 34px;
        display: flex !important;
    }
    
    .menu-bar {
        width: 20px;
        height: 2px;
        margin: 2.5px 0;
    }
    
    .menu-toggle.active .bar1 {
        transform: rotate(45deg) translate(2px, 2px);
    }
    
    .menu-toggle.active .bar3 {
        transform: rotate(-45deg) translate(2px, -2px);
    }
    
    .logo img {
        height: 35px;
    }
    
    .logo-main {
        font-size: 1.1rem;
    }
    
    .logo-sub {
        font-size: 0.7rem;
    }
    
    .phone-number {
        font-size: 0.8rem;
    }
    
    .hero-slider {
        height: 280px;
    }
    
    .slide-title {
        font-size: 1.3rem;
    }
    
    .slide-content {
        padding: 15px;
    }
    
    .page-title {
        font-size: 1.6rem;
    }
    
    .page-subtitle {
        font-size: 0.9rem;
    }
    
    /* TÄ°MELÄ°NE DÃœZELTMELERÄ° */
    .milestones-timeline {
        padding-left: 22px !important;
        margin-top: 15px;
    }
    
    .milestones-timeline::before {
        left: 10px !important;
        width: 2px;
    }
    
    .milestone-item {
        margin-bottom: 15px;
        min-height: 45px;
    }
    
    .milestone-year {
        width: 32px;
        height: 32px;
        left: -42px !important;
        font-size: 0.75rem;
        border: 2px solid var(--white, #fff) !important;
        box-shadow: 0 0 0 2px var(--secondary-color, #d4a55c) !important;
    }
    
    .milestone-content {
        padding: 10px;
        border-left-width: 3px;
    }
    
    .milestone-content h3 {
        font-size: 0.9rem;
        margin-bottom: 3px;
    }
    
    .milestone-content p {
        font-size: 0.8rem;
    }
}

/* ===== TABLET (768px - 991px) ===== */
@media (min-width: 768px) and (max-width: 991px) {
    /* MenÃ¼ butonu tablette gÃ¶ster */
    .menu-toggle {
        display: flex !important;
        margin-left: 15px;
    }
    
    /* MasaÃ¼stÃ¼ navigasyon tablette gizle */
    .desktop-nav {
        display: none !important;
    }
    
    /* HÄ±zlÄ± Navigasyon Tablet */
    .product-nav {
        margin: 25px 0 35px !important;
    }
    
    .nav-categories {
        gap: 8px !important;
    }
    
    .nav-category {
        padding: 10px 18px !important;
        font-size: 0.9rem !important;
    }
    
    .nav-category i {
        font-size: 0.9rem !important;
    }
    
    /* Hero Slider tablet dÃ¼zenlemeleri */
    .hero-slider {
        height: 450px;
    }
    
    .slide-title {
        font-size: 2.5rem;
    }
    
    .slide-text {
        font-size: 1.1rem;
    }
    
    /* HakkÄ±mÄ±zda sayfasÄ± tablet dÃ¼zenlemeleri */
    .about-history {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .history-image img {
        max-height: 400px;
    }
    
    .vision-mission-grid,
    .values-grid,
    .quality-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-stats {
        grid-template-columns: repeat(4, 1fr);
    }
    
    /* Grid sistemleri tablet iÃ§in */
    .access-grid,
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===== BÃœYÃœK MASAÃœSTÃœ (1200px+) ===== */
@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
    
    .about-history {
        gap: 60px;
    }
    
    .history-content {
        padding-right: 30px;
    }
    
    /* HÄ±zlÄ± Navigasyon Desktop */
    .product-nav {
        margin: 35px 0 45px !important;
    }
    
    .nav-categories {
        gap: 15px !important;
    }
    
    .nav-category {
        padding: 14px 24px !important;
        font-size: 1rem !important;
    }
    
    .nav-category i {
        font-size: 1.1rem !important;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .header, .footer, .whatsapp-btn, .menu-toggle, .product-nav {
        display: none !important;
    }
    
    body {
        color: #000;
        background: #fff;
    }
    
    .container {
        width: 100%;
        max-width: 100%;
    }
    
    a {
        text-decoration: underline;
        color: #000;
    }
    
    .main-content {
        padding: 0;
    }
    
    .page-header {
        background: none !important;
        padding: 20px 0 !important;
    }
}

/* ===== ACCESSIBILITY IMPROVEMENTS ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .whatsapp-btn {
        animation: none !important;
    }
}

/* ===== DARK MODE SUPPORT ===== */
@media (prefers-color-scheme: dark) {
    .menu-bar {
        background-color: var(--primary-color, #2c5530);
    }
    
    .menu-toggle {
        border-color: rgba(255,255,255,0.2);
        background: rgba(255,255,255,0.1);
    }
    
    .menu-toggle.active .menu-bar {
        background-color: var(--secondary-color, #d4a55c);
    }
    
    @media (max-width: 991px) {
        .main-nav {
            background: var(--dark-color, #1a1a1a);
            color: var(--white, #fff);
        }
        
        .nav-link {
            color: var(--white, #fff);
            border-bottom-color: rgba(255,255,255,0.1);
        }
        
        .nav-link:hover,
        .nav-link.active {
            color: var(--secondary-color, #d4a55c);
            background: rgba(255,255,255,0.1);
        }
        
        .contact-phone {
            background: rgba(255,255,255,0.1);
        }
    }
}

/* ===== PRODUCT GRID STYLES ===== */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 20px;
    margin-bottom: 40px;
}

.product-item {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid var(--border-color);
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-lg);
}

.product-img {
    height: 220px;
    overflow: hidden;
    background: #fdfdfd;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--border-color);
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-placeholder {
    font-size: 3rem;
    color: #ddd;
}

.product-details {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-details h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    height: 2.6em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2 !important;
    line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
}

.product-desc {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.5;
    flex: 1;
}

@media (max-width: 768px) {
    .category-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 20px;
    }
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    color: #FFF;
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }
}
/* Unified Theme Append */
.feature-card:hover { transform: translateY(-10px) scale(1.02); box-shadow: 0 15px 40px rgba(0,0,0,0.1) !important; }
.slide-content { left: 5% !important; max-width: 550px !important; background: rgba(0, 0, 0, 0.65) !important; padding: 40px !important; border-left: 5px solid #0d4e28 !important; }
.slide-title { font-size: 3.2rem !important; font-weight: 800 !important; }
.slide-text { font-size: 1.3rem !important; margin-bottom: 35px !important; }
.sekban-cat-btn { border: 2px solid #0d4e28 !important; color: #0d4e28 !important; background: transparent !important; padding: 12px 30px !important; border-radius: 6px !important; font-weight: 600 !important; text-decoration: none !important; transition: all 0.3s ease !important; display: inline-block !important; }
.sekban-cat-btn:hover { background: #0d4e28 !important; color: #fff !important; }
.contact-phone { border: 2px solid #0d4e28 !important; background: #fff !important; }
@media (max-width: 768px) {
    .slide-title { font-size: 2.2rem !important; }
    .slide-content { width: 90% !important; left: 5% !important; padding: 25px !important; }
    .about-section { padding: 60px 0 !important; }
    .about-flex { flex-direction: column !important; gap: 30px !important; }
}
/* Header Mobile Actions Alignment - Absolute Control Rev v4 */
@media (max-width: 991px) {
    .header .container {
        padding: 0 15px !important;
    }
    .header-content {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: 100% !important;
        height: auto !important;
        min-height: 70px !important;
        gap: 0 !important;
    }
    .logo {
        order: -1 !important; /* Forces it to the beginning */
        margin: 0 !important;
        margin-right: auto !important;
        display: flex !important;
        align-items: center !important;
        flex: 0 0 auto !important;
        text-decoration: none !important;
    }
    .logo img {
        height: 45px !important;
        width: auto !important;
        margin-right: 10px !important;
    }
    .header-actions-mobile {
        order: 1 !important; /* Forces it to the end */
        display: flex !important;
        align-items: center !important;
        gap: 10px !important;
        margin-left: auto !important;
        flex: 0 0 auto !important;
    }
    .contact-phone, .menu-toggle {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 44px !important;
        height: 44px !important;
        min-width: 44px !important;
        min-height: 44px !important;
        max-width: 44px !important;
        max-height: 44px !important;
        border: 2px solid #0d4e28 !important;
        border-radius: 10px !important;
        background: #fff !important;
        color: #0d4e28 !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin: 0 !important;
        cursor: pointer !important;
        flex-shrink: 0 !important;
    }
    .contact-phone .phone-text {
        display: none !important;
    }
    .contact-phone i {
        font-size: 1.4rem !important;
    }
    .menu-toggle {
        flex-direction: column !important;
        gap: 5px !important;
    }
    .menu-toggle .menu-bar {
        width: 22px !important;
        height: 2px !important;
        background-color: #0d4e28 !important;
        margin: 0 !important;
        display: block !important;
    }
    .desktop-nav {
        display: none !important;
    }
    .main-nav:not(.active) {
        pointer-events: none;
        visibility: hidden;
    }
}

/* Desktop cleanup */
@media (min-width: 992px) {
    .header-actions-mobile { display: flex; align-items: center; gap: 30px; margin-left: auto; }
}

/* ===== HAKKIMIZDA SAYFASI - REFACTOR Ä°Ã‡Ä°N YENÄ° DÃœZEN ===== */
.about-page-header {
    text-align: center;
    margin-bottom: 50px;
}
.about-page-header .page-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
}
.title-separator {
    width: 50px;
    height: 3px;
    background: var(--accent-color);
    margin: 20px auto;
}

.about-section-wrapper {
    margin-bottom: 60px;
}

.about-section-title {
    color: var(--text-color);
    margin-bottom: 20px;
    font-size: 1.8rem;
    border-left: 5px solid var(--accent-color);
    padding-left: 15px;
}
.about-section-title.text-center {
    text-align: center;
    border-left: none;
    padding-left: 0;
}

/* 1. TarihÃ§emiz */
.about-history {
    display: grid;
    grid-template-columns: 1fr; /* Mobil ve dar ekranlar iÃ§in tek sÃ¼tun */
    gap: 30px;
    align-items: center;
}
.history-text {
    line-height: 1.8;
    color: var(--text-color);
    font-size: 1rem;
}
.history-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--box-shadow-lg);
}
.history-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* 2. Vizyon Misyon */
.vm-wrapper {
    background: var(--white);
    padding: 30px 20px;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--box-shadow);
}
.styled-text-content {
    line-height: 1.8;
    color: var(--text-color);
    font-size: 1rem;
}

/* 3. DeÄŸerler */
.values-container {
    background: var(--white);
    padding: 30px 20px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
}

/* 4. Ekip ve Sosyal */
.team-social-content {
    background: var(--dark-color);
    color: var(--white);
    padding: 30px 20px;
    border-radius: var(--border-radius-lg);
}

/* Tablet ve ÃœstÃ¼ Ekranlar iÃ§in Yan Yana GÃ¶rÃ¼nÃ¼m */
@media (min-width: 768px) {
    .about-history {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .vm-wrapper, 
    .values-container, 
    .team-social-content {
        padding: 40px;
    }
}

/* ===== HÄ°ZMETLER SAYFASI - REFACTOR Ä°Ã‡Ä°N YENÄ° DÃœZEN ===== */
.service-detail {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 60px;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
    overflow: hidden;
}
.service-image {
    width: 100%;
    order: -1; /* Mobilde her zaman Ã¼stte */
}
.service-image img {
    width: 100%;
    height: 100%;
    max-height: 350px;
    object-fit: cover;
    display: block;
}
.service-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.service-content h3 {
    color: var(--primary-color);
    font-size: 1.6rem;
    margin-bottom: 15px;
}
.dynamic-content p {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Ã–zellikler IzgarasÄ± */
.service-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}
.feature-item {
    background: var(--light-color);
    padding: 20px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
}
.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}
.feature-item i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}
.feature-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--dark-color);
}
.feature-item p {
    font-size: 0.9rem;
    margin: 0;
    color: var(--text-light);
}

/* Hizmet SÃ¼reci Timeline */
.service-process {
    background: var(--primary-color);
    color: var(--white);
    padding: 60px 0;
    margin-top: 60px;
    margin-bottom: 80px;
    border-radius: var(--border-radius-lg);
}
.process-container {
    padding: 0 30px;
}
.service-process .section-title {
    color: var(--white);
    text-align: center;
}
.service-process .section-title::after {
    background-color: var(--secondary-color);
}
.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 50px;
}
.timeline-step {
    text-align: center;
    position: relative;
}
.step-icon {
    width: 45px;
    height: 45px;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0 auto 15px;
    font-family: var(--font-heading);
    box-shadow: 0 0 0 6px rgba(212, 165, 92, 0.2);
}
.timeline-step h3 {
    color: var(--primary-color);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.timeline-step p {
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.5;
}

/* Tablet ve MasaÃ¼stÃ¼ */
@media (min-width: 576px) {
    .process-timeline {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    .timeline-step {
        width: 45%;
    }
}
@media (max-width: 576px) {
    .service-features-grid {
        grid-template-columns: 1fr;
    }
}
@media (min-width: 768px) {
    .service-detail {
        flex-direction: row;
        align-items: stretch;
    }
    .service-image {
        width: 50%;
        order: 0; /* Normal akÄ±ÅŸ */
    }
    .service-image img {
        height: 100%;
        max-height: none;
        object-fit: cover;
    }
    .service-content {
        width: 50%;
        padding: 50px;
    }
    
    /* MasaÃ¼stÃ¼nde HTML sÄ±rasÄ±na gÃ¶re yerleÅŸtirme */
    .service-detail:not(.reverse) .service-content {
        order: 1;
    }
    .service-detail:not(.reverse) .service-image {
        order: 2;
    }
    
    .service-detail.reverse .service-image {
        order: 1;
    }
    .service-detail.reverse .service-content {
        order: 2;
    }
    
    /* Timeline yatay daÄŸÄ±lÄ±m */
    .process-timeline {
        flex-wrap: nowrap;
        justify-content: space-between;
    }
    .timeline-step {
        width: auto;
        flex: 1;
        padding: 0 15px;
    }
    .timeline-step:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 30px;
        right: -50%;
        width: 100%;
        height: 2px;
        background: rgba(212, 165, 92, 0.3);
        z-index: 0;
    }
    .step-icon {
        position: relative;
        z-index: 1;
    }
}


/* ===== FLOATING CONTACT BUTTONS (Added) ===== */
.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.whatsapp-float, .phone-float {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF !important;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float {
    background-color: #25d366;
    position: static !important; /* Reset from old style */
}

.phone-float {
    background-color: #2c5530; /* Primary color for phone */
}

.whatsapp-float:hover, .phone-float:hover {
    transform: scale(1.1);
    color: #FFF !important;
}

.whatsapp-float:hover {
    background-color: #128c7e;
}

.phone-float:hover {
    background-color: #234026;
}

@media (max-width: 768px) {
    .floating-contact {
        bottom: 20px;
        right: 20px;
    }
    .whatsapp-float, .phone-float {
        width: 55px;
        height: 55px;
        font-size: 26px;
    }
} 

/* ===== HAKKIMIZDA SAYFASI TASARIMI ===== */
.about-page-header {
    text-align: center;
    padding: 60px 0 40px;
}

.about-page-header .page-title {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.about-page-header .page-subtitle {
    font-size: 1.2rem;
    color: var(--secondary-color);
    font-style: italic;
    margin-bottom: 20px;
}

.title-separator {
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 0 auto;
    border-radius: 2px;
}

.about-section-wrapper {
    padding: 60px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.about-section-wrapper:last-child {
    border-bottom: none;
}

.about-history {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.history-content {
    flex: 1;
    min-width: 300px;
}

.history-image {
    flex: 1;
    min-width: 300px;
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--box-shadow-lg);
    transition: var(--transition-slow);
}

.history-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.history-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.about-section-title {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.about-section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--secondary-color);
}

.about-section-title.text-center::after {
    left: 50%;
    transform: translateX(-50%);
}

.styled-text-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-color);
}

.styled-text-content p {
    margin-bottom: 1.5rem;
}

.vm-wrapper {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 60px 40px;
    box-shadow: var(--box-shadow);
    margin: 40px 0;
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 30px;
}

.vision-mission-grid > div {
    padding: 30px;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    border-top: 4px solid var(--secondary-color);
    transition: var(--transition);
}

.vision-mission-grid > div:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.vision-mission-grid h3 {
    margin-bottom: 20px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 15px;
}

.values-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.values-container > div {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.values-container > div:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-lg);
}

.values-container i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .about-page-header .page-title {
        font-size: 2.2rem;
    }
    
    .about-history {
        flex-direction: column-reverse;
    }
    
    .vm-wrapper {
        padding: 40px 20px;
    }
    
    .vision-mission-grid {
        grid-template-columns: 1fr;
    }
}

/* VALUES GRID DESIGN (Image 1) */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.value-card {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.value-card .icon-wrap i {
    font-size: 2.5rem;
    color: #1b4b2c;
    margin-bottom: 15px;
}

.value-card h3 {
    color: #1b4b2c;
    font-size: 1.25rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.value-card p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0;
}

.value-card.highlight-card {
    border: 2px solid #1b4b2c;
}

/* TEAM GRID DESIGN (Image 2) */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.team-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    text-align: left;
    transition: all 0.3s ease;
}

.team-card h3 {
    color: #1b4b2c;
    font-size: 1.25rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.team-card p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0;
}

/* SOCIAL RESPONSIBILITY BOX (Image 3) */
.social-responsibility-box {
    background-color: #173721;
    color: #fff;
    padding: 50px 40px;
    border-radius: 8px;
    text-align: center;
}

.social-responsibility-box h3 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.social-responsibility-box p {
    color: #d1e3d6;
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 30px auto;
}

.social-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.social-badges .badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 0.95rem;
    color: #fff;
    font-weight: 500;
    transition: all 0.3s ease;
}

.social-badges .badge:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.social-badges .badge i {
    color: #d4a55c; /* Gold/yellowish color for icons */
    font-size: 1.1rem;
}
