/* Reset ve Temel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-dark: #333333;
    --primary-red: #630000;
    --light-gray: #f8f9fa;
    --medium-gray: #e9ecef;
    --dark-gray: #6c757d;
    --text-dark: #212529;
    --text-light: #ffffff;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --border-radius-lg: 12px;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #fff;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

ul {
    list-style: none;
}

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    background: none;
}

/* Buton Stilleri */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    border: 2px solid transparent;
    gap: 8px;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--primary-red);
    color: var(--text-light);
}

.btn-primary:hover {
    background-color: #7a0000;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background-color: var(--primary-dark);
    color: var(--text-light);
}

.btn-secondary:hover {
    background-color: #444;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-red);
    color: var(--primary-red);
}

.btn-outline:hover {
    background-color: var(--primary-red);
    color: var(--text-light);
}

.btn-hero {
    background-color: var(--text-light);
    color: var(--primary-red);
    padding: 14px 32px;
    font-size: 18px;
    font-weight: 700;
}

.btn-hero:hover {
    background-color: var(--primary-red);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 0, 0, 0.3);
}

.btn-block {
    width: 100%;
}

/* WhatsApp Butonu */
.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: 30px;
    z-index: 1000;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--text-light);
    box-shadow: var(--shadow);
    z-index: 1000;
    padding: 15px 0;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo {
    flex-shrink: 0;
    margin-left: 15px;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 1001;
    margin-right: 15px;
    cursor: pointer;
}

.hamburger {
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: var(--primary-dark);
    transition: var(--transition);
    top: 50%;
    transform: translateY(-50%);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: var(--primary-dark);
    transition: var(--transition);
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

.nav-toggle[aria-expanded="true"] .hamburger {
    background-color: transparent;
}

.nav-toggle[aria-expanded="true"] .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
    transform: rotate(-45deg);
    bottom: 0;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
    flex: 1;
    justify-content: space-between;
}

.nav-list {
    display: flex;
    gap: 25px;
    margin: 0 auto;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark);
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-red);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-red);
}

.nav-actions {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

/* Hero Slider */
.hero {
    margin-top: 80px;
    height: calc(100vh - 80px);
    min-height: 600px;
    max-height: 800px;
    position: relative;
    overflow: hidden;
}

.hero-slider {
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
    z-index: 1;
}

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

.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slide-content {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    color: var(--text-light);
    padding: 0 20px;
    z-index: 2;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
    z-index: 1;
}

.slide-text {
    max-width: 600px;
    z-index: 2;
}

.slide-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.slide-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Slider Kontrolleri */
.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
}

.slider-prev,
.slider-next {
    background-color: rgba(99, 0, 0, 0.7);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    backdrop-filter: blur(5px);
    z-index: 10;
}

.slider-prev:hover,
.slider-next:hover {
    background-color: var(--primary-red);
    transform: scale(1.1);
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.dot.active {
    background-color: var(--primary-red);
    transform: scale(1.2);
}

/* Section Genel Stilleri */
section {
    padding: 80px 0;
    position: relative;
}

/* Section Başlıkları */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 20px;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-red);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--dark-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Hakkımızda Section */
.about-section {
    background-color: #fafafa;
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

@media (min-width: 768px) {
    .about-content {
        flex-direction: row;
        align-items: flex-start;
    }
}

.experience-badge {
    background-color: var(--primary-red);
    color: var(--text-light);
    border-radius: var(--border-radius-lg);
    padding: 35px;
    text-align: center;
    min-width: 180px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    flex-shrink: 0;
}

.experience-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(99, 0, 0, 0.2);
}

.years {
    font-size: 52px;
    font-weight: 800;
    display: block;
    line-height: 1;
}

.badge-text {
    font-size: 18px;
    font-weight: 600;
    display: block;
    margin-top: 10px;
    line-height: 1.4;
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--primary-dark);
    line-height: 1.3;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-dark);
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background-color: var(--text-light);
    padding: 35px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--medium-gray);
    box-shadow: var(--shadow);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-red);
}

.feature-icon {
    font-size: 42px;
    color: var(--primary-red);
    margin-bottom: 25px;
}

.feature-card h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.feature-card p {
    color: var(--dark-gray);
    line-height: 1.6;
}

/* Vizyon & Misyon Section */
.vision-section {
    padding: 100px 0;
    background-color: var(--text-light);
}

.vm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.vm-card {
    background-color: var(--text-light);
    padding: 50px 35px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--medium-gray);
    position: relative;
    overflow: hidden;
}

.vm-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--primary-red);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.vm-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-red);
}

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

.vm-icon {
    font-size: 52px;
    color: var(--primary-red);
    margin-bottom: 30px;
}

.vm-card h3 {
    font-size: 26px;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.vm-card p {
    color: var(--dark-gray);
    line-height: 1.7;
}

/* Markalar Section */
.brands-section {
    padding: 100px 0;
    background-color: #fafafa;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 50px;
    max-width: 900px;
    margin: 0 auto;
}

.brand-card {
    background-color: var(--text-light);
    padding: 50px 40px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--medium-gray);
    position: relative;
}

.brand-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-red);
}

.brand-logo {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.brand-logo img {
    max-height: 90px;
    width: auto;
    transition: transform 0.3s ease;
}

.brand-card:hover .brand-logo img {
    transform: scale(1.05);
}

.brand-card h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.brand-card p {
    color: var(--dark-gray);
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Ürünler Section */
.products-section {
    padding: 100px 0;
    background-color: var(--text-light);
}

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

.product-card {
    background-color: var(--text-light);
    padding: 45px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--medium-gray);
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--primary-red);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-red);
}

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

.product-icon {
    font-size: 52px;
    color: var(--primary-red);
    margin-bottom: 30px;
}

.product-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.product-card p {
    color: var(--dark-gray);
    line-height: 1.6;
}

/* İletişim Section */
.contact-section {
    padding: 100px 0;
    background-color: #fafafa;
}

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

@media (min-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-info,
.contact-form {
    height: 100%;
}

.info-card,
.form-card {
    background-color: var(--text-light);
    padding: 45px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    height: 100%;
    border: 1px solid var(--medium-gray);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Kart hover efekti */
.info-card:hover,
.form-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
}

/* Başlık stilleri */
.info-card h3,
.form-card h3 {
    text-align: center;
    color: var(--primary-dark);
    font-size: 1.8rem;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 20px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.info-card h3::after,
.form-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), #ff6b6b);
    border-radius: 2px;
}

/* İletişim Bilgileri Kartı */
.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.info-item:last-child {
    border-bottom: none;
}

.info-item:hover {
    padding-left: 15px;
    border-radius: 8px;
}

.info-item:hover .info-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(99, 0, 0, 0.2);
}

.info-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-red), #cc0000);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    min-width: 48px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(99, 0, 0, 0.15);
}

.info-content h4 {
    font-size: 16px;
    margin-bottom: 6px;
    color: var(--primary-dark);
    font-weight: 600;
    letter-spacing: 0.3px;
}

.info-content p {
    color: var(--dark-gray);
    line-height: 1.7;
    font-size: 15px;
    margin: 0;
}

/* Sosyal Medya Linkleri */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    justify-content: center;
}

.social-link {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.social-link.instagram {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
}

.social-link.email {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

/* Form Kartı */
.form-description {
    color: var(--dark-gray);
    margin-bottom: 35px;
    line-height: 1.7;
    text-align: center;
    font-size: 15px;
    padding: 0 10px;
}

.form-group {
    position: relative;
    margin-bottom: 28px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 18px 20px;
    border: 1.5px solid var(--medium-gray);
    border-radius: 12px;
    font-family: inherit;
    font-size: 15px;
    background-color: white;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    outline: none;
}

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

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='%23666' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 16px;
    padding-right: 50px;
    cursor: pointer;
}

.form-group label {
    position: absolute;
    top: 18px;
    left: 20px;
    padding: 0 8px;
    color: var(--dark-gray);
    transition: all 0.3s ease;
    pointer-events: none;
    background-color: white;
    font-size: 15px;
    cursor: text;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(99, 0, 0, 0.1);
}

.form-group input:focus + label,
.form-group select:focus + label,
.form-group textarea:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group select:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -10px;
    font-size: 13px;
    color: var(--primary-red);
    background-color: white;
    font-weight: 600;
    left: 16px;
    cursor: default;
}

/* Checkbox */
.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 35px;
    padding: 10px;
    background-color: #f9f9f9;
    border-radius: 10px;
    border-left: 4px solid var(--primary-red);
}

.form-checkbox input[type="checkbox"] {
    width: 22px;
    height: 22px;
    margin-top: 3px;
    cursor: pointer;
    accent-color: var(--primary-red);
    flex-shrink: 0;
}

.form-checkbox label {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-dark);
    cursor: pointer;
    user-select: none;
    flex: 1;
}

.kvkk-link {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: all 0.2s ease;
}

.kvkk-link:hover {
    color: #7a0000;
    border-bottom-color: #7a0000;
}

/* Gönder butonu */
.submit-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--primary-red), #cc0000);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(99, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(99, 0, 0, 0.3);
    background: linear-gradient(135deg, #cc0000, #a30000);
}

.submit-btn:active {
    transform: translateY(-1px);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    overflow-y: auto;
    padding: 20px;
    animation: modalFadeIn 0.3s ease;
}

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

.modal-content {
    background-color: var(--text-light);
    border-radius: var(--border-radius);
    max-width: 800px;
    margin: 50px auto;
    position: relative;
    animation: modalSlideIn 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

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

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 1px solid var(--medium-gray);
    background-color: #fafafa;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.modal-header h2 {
    font-size: 28px;
    color: var(--primary-dark);
}

.modal-close {
    background: none;
    border: none;
    font-size: 30px;
    color: var(--dark-gray);
    cursor: pointer;
    transition: var(--transition);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    line-height: 1;
}

.modal-close:hover {
    color: var(--primary-red);
    background-color: var(--light-gray);
}

.modal-body {
    padding: 35px;
}

.kvkk-text h3 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 15px;
    color: var(--primary-dark);
    padding-bottom: 10px;
    border-bottom: 1px solid var(--medium-gray);
}

.kvkk-text h3:first-child {
    margin-top: 0;
}

.kvkk-text p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: var(--text-dark);
}

.modal-actions {
    display: flex;
    gap: 15px;
    margin-top: 40px;
    flex-wrap: wrap;
}



/* Modal action düzenleme */
.modal-actions {
    justify-content: center;
}

/* Sadece bilgilendirme modalleri için (tek buton) */
#distance-sales-info-modal .modal-actions {
    padding-bottom: 20px;
}

/* Kapat butonu – masaüstü */
#distance-sales-info-modal .modal-actions .btn {
    min-width: 200px;
    justify-content: center;
}

/* Mobil uyum */
@media (max-width: 768px) {

    .modal {
        padding: 10px;
    }

    .modal-content {
        margin: 20px auto;
    }

    /* Başlık ve kapatma */
    .modal-header {
        padding: 18px 20px;
    }

    .modal-header h2 {
        font-size: 22px;
    }

    /* İçerik alanı */
    .modal-body {
        padding: 20px;
    }

    /* Uzun metinler için scroll */
    .contract-text {
        max-height: 55vh;
    }

    /* Mobilde buton full width */
    #distance-sales-info-modal .modal-actions {
        justify-content: center;
    }

    #distance-sales-info-modal .modal-actions .btn {
        width: 100%;
        min-width: unset;
        padding: 16px;
        font-size: 16px;
    }

    /* Mobilde X butonu biraz küçülsün */
    .modal-close {
        font-size: 26px;
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 768px) {
    #distance-sales-info-modal .modal-actions {
        position: sticky;
        bottom: 0;
        background: #fff;
        padding: 15px;
        box-shadow: 0 -5px 15px rgba(0,0,0,0.1);
    }
}

/* Footer */
.footer {
    background-color: var(--primary-dark);
    color: var(--text-light);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
}

.footer-about .footer-logo img {
    height: 55px;
    margin-bottom: 25px;
}

.footer-description {
    opacity: 0.8;
    margin-bottom: 25px;
    line-height: 1.7;
    font-size: 16px;
}

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 12px;
    color: var(--text-light);
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-red);
}

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

.footer-links a {
    opacity: 0.8;
    transition: var(--transition);
    font-size: 16px;
    display: inline-block;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary-red);
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-copyright p {
    opacity: 0.8;
    margin-bottom: 8px;
    font-size: 15px;
}

.design-credit {
    opacity: 0.7;
    font-size: 14px;
}

.design-credit a {
    color: var(--text-light);
    opacity: 0.8;
    transition: var(--transition);
}

.design-credit a:hover {
    opacity: 1;
    color: var(--primary-red);
}

.payment-methods {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.payment-methods span {
    opacity: 0.8;
    font-size: 15px;
}

.payment-icons {
    display: flex;
    gap: 15px;
    font-size: 28px;
}

/* Responsive Tasarım */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
}

@media (max-width: 992px) {
    .section-title {
        font-size: 32px;
    }
    
    .about-text h3 {
        font-size: 28px;
    }
    
    .vm-grid,
    .brands-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }
}

@media (max-width: 768px) {
    .header {
        padding: 12px 0;
    }
    
    .logo {
        margin-left: 10px;
    }
    
    .logo img {
        height: 40px;
    }
    
    .nav-toggle {
        display: block;
        position: relative;
        z-index: 1001;
        margin-right: 0px;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--text-light);
        flex-direction: column;
        padding: 70px 20px 20px;
        transition: right 0.4s ease;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
        overflow-y: auto;
        display: flex;
        justify-content: flex-start;
        align-items: stretch;
        z-index: 1000;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    /* Kapatma tuşu pozisyonu */
    .nav-menu.active .nav-toggle {
        position: fixed;
        top: 20px;
        right: 5px;
        z-index: 1002;
    }
    
    /* Butonları EN ÜSTE al */
    .nav-actions {
        flex-direction: column;
        margin-top: 0;
        margin-bottom: 25px;
        gap: 12px;
        width: 100%;
        order: -1;
    }
    
    .nav-actions .btn {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        font-size: 15px;
        font-weight: 600;
        border-radius: 8px;
    }
    
    /* Linkleri butonlardan sonraya al */
    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: 0;
        order: 1;
    }
    
    .nav-link {
        display: block;
        padding: 16px 0;
        border-bottom: 1px solid var(--medium-gray);
        width: 100%;
        font-size: 16px;
    }
    
    /* İlk linkin üst border'ını ekle */
    .nav-list li:first-child .nav-link {
        border-top: 1px solid var(--medium-gray);
    }
    
    /* Hero */
    .hero {
        margin-top: 64px;
        height: calc(100vh - 64px);
        min-height: 500px;
        max-height: 600px;
    }
    
    .slider-controls {
        padding: 0 15px;
    }
    
    .slider-prev,
    .slider-next {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
    
    .slider-dots {
        bottom: 25px;
    }
    
    .slide-text h1 {
        font-size: 2.5rem;
    }
    
    .slide-text p {
        font-size: 1rem;
    }
    
    /* Sections */
    section {
        padding: 70px 0;
    }
    
    .about-section,
    .vision-section,
    .brands-section,
    .products-section,
    .contact-section {
        padding: 70px 0;
    }
    
    .section-header {
        margin-bottom: 50px;
    }
    
    .section-title {
        font-size: 28px;
        padding-bottom: 12px;
    }
    
    .section-title::after {
        width: 60px;
        height: 3px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    /* About */
    .about-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .experience-badge {
        padding: 30px;
        min-width: 140px;
    }
    
    .years {
        font-size: 44px;
    }
    
    .about-text h3 {
        font-size: 26px;
    }
    
    .feature-card,
    .vm-card,
    .brand-card,
    .product-card {
        padding: 35px 25px;
    }
    
    /* Cards */
    .vm-grid,
    .brands-grid,
    .products-grid {
        gap: 30px;
    }
    
    .info-card,
    .form-card {
        padding: 35px 25px;
    }
    
    /* WhatsApp */
    .whatsapp-btn {
        width: 55px;
        height: 55px;
        font-size: 26px;
        bottom: 25px;
        right: 25px;
    }
    
    /* KVKK Modal */
    #kvkk-modal .modal-actions {
        flex-direction: column;
    }
    
    #kvkk-modal .modal-actions .btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .hero {
        min-height: 450px;
        max-height: 550px;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .about-text h3 {
        font-size: 24px;
    }
    
    .feature-card,
    .vm-card,
    .brand-card,
    .product-card {
        padding: 30px 20px;
    }
    
    .about-features,
    .products-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .modal-content {
        margin: 20px auto;
    }
    
    .modal-header {
        padding: 20px;
    }
    
    .modal-body {
        padding: 25px;
    }
    
    .btn-hero {
        padding: 12px 24px;
        font-size: 16px;
    }
    
    .footer {
        padding: 60px 0 25px;
    }
    
    .footer-grid {
        gap: 40px;
        margin-bottom: 50px;
    }
    
    .slide-text h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        width: 250px;
        padding: 65px 15px 15px;
    }
    
    .nav-menu.active .nav-toggle {
        top: 15px;
        right: 15px;
    }
    
    .nav-actions .btn {
        padding: 12px 16px;
        font-size: 14px;
    }
    
    .nav-link {
        padding: 14px 0;
        font-size: 15px;
    }
    
    .logo img {
        height: 35px;
    }
}

/* Çok küçük ekranlar */
@media (max-width: 400px) {
    .hero {
        min-height: 400px;
        max-height: 500px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .slider-prev,
    .slider-next {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
    
    .slider-dots {
        bottom: 20px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 15px;
    }
    
    .footer-links a {
        font-size: 15px;
    }
    
    .info-card,
    .form-card {
        padding: 25px 20px;
    }
    
    .submit-btn {
        padding: 16px;
        font-size: 16px;
    }
    
    .nav-menu {
        width: 100%;
        right: -100%;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu.active .nav-toggle {
        top: 15px;
        right: 15px;
    }
    
    .logo img {
        height: 32px;
    }
    
    .nav-toggle {
        margin-right: 5px;
        width: 26px;
        height: 18px;
    }
    
    .hamburger {
        height: 2.5px;
    }
    
    .hamburger::before,
    .hamburger::after {
        height: 2.5px;
    }
    
    .hamburger::before {
        top: -7px;
    }
    
    .hamburger::after {
        bottom: -7px;
    }
}

/* Yüksek kontrast ve erişilebilirlik */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print stilleri */
@media print {
    .header,
    .whatsapp-btn,
    .footer,
    .btn {
        display: none !important;
    }
    
    .contact-section {
        page-break-inside: avoid;
    }
}