/**
 * Diriliş Mimarlık - Modern Endüstriyel Tasarım
 * Çevikbaş tarzı modern ve profesyonel tasarım
 */

:root {
    --primary: #1F4AA8;
    --primary-dark: #183D8C;
    --primary-light: #4A6FC7;
    --accent: #000000;
    --accent-dark: #000000;
    --danger: #DC3545;
    --orange: #FF6B35;
    --dark: #1A252F;
    --gray: #6C757D;
    --light: #F8F9FA;
    --white: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    font-weight: 400;
}

/* SEO Helper - Visually Hidden (Screen Reader Only) */
.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px);
    border-bottom: 3px solid var(--primary);
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    padding: 0.5rem 0;
}

.nav-link {
    font-weight: 600;
    color: var(--dark) !important;
    padding: 0.5rem 1.5rem !important;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-link:hover::before {
    width: 70%;
}

.nav-link:hover {
    color: var(--primary) !important;
}

/* Hero Section - Modern Gradient */
.hero-modern {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
        overflow: hidden;
}

.hero-gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #1F4AA8 0%, #183D8C 50%, #1A252F 100%);
    animation: gradientShift 15s ease infinite;
    z-index: -1;
}

.hero-gradient-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.hero-gradient-bg::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(31, 74, 168, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes gradientShift {
    0%, 100% { background: linear-gradient(135deg, #1F4AA8 0%, #183D8C 50%, #1A252F 100%); }
    50% { background: linear-gradient(135deg, #183D8C 0%, #1F4AA8 50%, #1A252F 100%); }
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}

.hero-content-modern {
    color: white;
    z-index: 1;
}

.hero-badge-modern {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title-modern {
    font-family: 'Poppins', sans-serif;
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: white;
    text-shadow: 2px 2px 20px rgba(0,0,0,0.3);
    letter-spacing: -0.02em;
}

.highlight-modern {
    color: var(--accent);
    background: white;
    padding: 0 0.5rem;
    display: inline-block;
    transform: rotate(-2deg);
}

.hero-subtitle-modern {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 600px;
}

.hero-buttons-modern {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary-modern {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.btn-primary-modern:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(31, 74, 168, 0.4);
    color: #fff;
}

.btn-outline-modern {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline-modern:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-3px);
}

.hero-stats-modern {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item-modern {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-item-modern:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.stat-number-modern {
    font-family: 'Poppins', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.stat-label-modern {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* 4 Bölümlü Marka Slider */
.brands-hero-section {
    padding: 0;
    margin: 0;
}

.brands-hero-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    height: 72vh;
    min-height: 600px;
    max-height: 840px;
    gap: 0;
}

.brand-hero-item {
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
}

.brand-hero-item:hover {
    transform: scale(1.05);
    z-index: 10;
}

.brand-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.brand-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.brand-hero-item:hover .brand-hero-img {
    transform: scale(1.15);
}

.brand-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.6) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 1.5rem;
    transition: all 0.4s ease;
}

.brand-hero-item:hover .brand-hero-overlay {
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.6) 100%);
}

.brand-hero-link {
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
}

.brand-hero-link:hover {
    text-decoration: none;
    color: inherit;
}

.brand-hero-logo-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.5) 50%, transparent 100%);
    backdrop-filter: none;
    z-index: 2;
    pointer-events: none;
}

.brand-hero-logo {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem 1.5rem;
    background: transparent;
    z-index: 4;
    transition: transform 0.5s ease;
}

.brand-hero-item:hover .brand-hero-logo {
    transform: translateY(-100px);
}

.brand-logo-img {
    max-height: 46px;
    max-width: 56%;
    filter: brightness(0) invert(1);
    transition: all 0.4s ease;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.brand-logo-meha {
    max-height: 70px;
    max-width: 85%;
}

.brand-hero-content {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    color: white;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease 0.1s;
    padding: 0 1.5rem;
    z-index: 3;
    text-align: center;
    pointer-events: none;
}

.brand-hero-item:hover .brand-hero-content {
    opacity: 1;
    transform: translateY(0);
}

.brand-hero-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.brand-hero-url {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    margin-top: 0.8rem;
    letter-spacing: 0.5px;
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.brand-hero-item:hover .brand-hero-url {
    background: rgba(0, 0, 0, 0.8);
    border-color: rgba(255, 255, 255, 0.5);
}

.brand-hero-desc {
    font-size: 0.95rem;
    font-weight: 500;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
}

.brand-factory-overlay {
    background: transparent;
    justify-content: flex-start;
        align-items: flex-start;
    padding: 1.5rem;
}

.brand-factory-badge {
    margin-bottom: 0;
}

.factory-badge-img {
    max-width: 120px;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.3));
}

/* Trust Section */
.trust-section {
    padding: 100px 0;
    background: var(--light);
}

.trust-content {
    padding: 2rem;
}

.trust-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 1rem;
    letter-spacing: -0.01em;
}

.trust-title-large {
    font-size: 3.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
    padding-bottom: 0;
}

.trust-title-large::after {
    display: none;
}

.trust-content-full {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.trust-content-full .trust-text {
        text-align: center;
    font-size: 1.2rem;
}

.trust-highlight {
    color: #000000;
}

.trust-title::after {
    content: '';
    position: absolute;
        bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary);
}

.trust-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray);
}

/* Stats Section Modern */
.stats-section-modern {
    padding: 120px 0;
    background: white;
}

.section-header-modern {
    margin-bottom: 4rem;
}

.section-badge-modern {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.section-title-modern {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-subtitle-modern {
    font-size: 1.2rem;
    color: var(--gray);
    margin-top: 1rem;
}

.stats-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-card-modern {
    background: var(--light);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 3px solid transparent;
}

.stat-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(31, 74, 168, 0.2);
    border-color: var(--primary);
}

.stat-number-modern-card {
    font-family: 'Poppins', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
    line-height: 1;
    letter-spacing: -0.02em;
}

.stat-unit-modern {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.stat-title-modern {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.stat-desc-modern {
    color: var(--gray);
    line-height: 1.6;
}

/* Üretim Aşamalarımız Section */
.services-section-modern {
    padding: 120px 0;
    background: var(--light);
}

.production-stages-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.production-stage-item {
    padding: 2rem;
    background: white;
    border-radius: 15px;
    transition: all 0.4s ease;
    border-left: 4px solid transparent;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.production-stage-item:hover {
    border-left-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(31, 74, 168, 0.15);
}

.stage-icon-modern {
    width: 70px;
    height: 70px;
    min-width: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.stage-icon-modern i {
    font-size: 2rem !important;
    line-height: 1;
    display: inline-block;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.stage-icon-modern img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.production-stage-item:hover .stage-icon-modern {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 5px 15px rgba(31, 74, 168, 0.3);
}

.stage-info-modern {
    width: 100%;
}

.stage-title-modern {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.stage-desc-modern {
    color: var(--gray);
    line-height: 1.7;
    margin: 0;
    font-size: 0.95rem;
}

/* Brands Section Modern - Tam Görünen Resimler */
.brands-section-modern {
    padding: 120px 0;
    background: white;
}

.brands-grid-modern-full {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.brand-card-modern-full {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    aspect-ratio: 16/9;
    min-height: 400px;
}

.brand-card-modern-full:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(31, 74, 168, 0.3);
}

.brand-image-modern-full {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.brand-img-modern-full {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.brand-card-modern-full:hover .brand-img-modern-full {
    transform: scale(1.1);
}

.brand-overlay-modern-full {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(31, 74, 168, 0.95) 0%, rgba(26, 37, 47, 0.9) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    padding: 2rem;
    text-align: center;
}

.brand-card-modern-full:hover .brand-overlay-modern-full {
    opacity: 1;
}

.brand-logo-modern-full {
    max-height: 120px;
    max-width: 80%;
    filter: brightness(0) invert(1);
    margin-bottom: 1.5rem;
    object-fit: contain;
}

.brand-title-modern-full {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.brand-desc-modern-full {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    font-weight: 500;
}

.brand-logo-only-full {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-logo-center-full {
    text-align: center;
}

.brand-logo-large-full {
    max-height: 200px;
    max-width: 80%;
}

/* About Section Modern */
.about-section-modern {
    padding: 120px 0;
    background: var(--light);
}

.about-wrapper-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image-modern {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.about-img-modern {
    width: 100%;
    display: block;
}

.about-badge-modern {
    position: absolute;
    top: 20px;
    left: 20px;
    background: white;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.about-badge-img-modern {
    max-width: 150px;
}

.about-content-modern {
    padding: 2rem 0;
}

.about-text-modern {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

/* Blog Section Modern */
.blog-section-modern {
    padding: 120px 0;
    background: white;
}

.blog-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.blog-card-modern {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    border: 3px solid transparent;
}

.blog-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    border-color: var(--primary);
}

.blog-image-modern {
    height: 250px;
    overflow: hidden;
}

.blog-img-modern {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card-modern:hover .blog-img-modern {
    transform: scale(1.15);
}

.blog-content-modern {
    padding: 2rem;
}

.blog-date-modern {
    color: var(--gray);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 1rem;
}

.blog-title-modern {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.blog-excerpt-modern {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.blog-link-modern {
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.blog-link-modern:hover {
    color: var(--primary-dark);
    gap: 1rem;
}

/* CTA Section Modern */
.cta-section-modern {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta-wrapper-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.cta-title-modern {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.cta-text-modern {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.8;
}

.cta-button-modern {
    flex-shrink: 0;
}

/* Footer Modern */
.footer-modern {
    background: linear-gradient(135deg, #1A252F 0%, #1F4AA8 100%);
    color: white;
    padding: 80px 0 30px;
    margin-top: 0;
}

.footer-top-modern {
    margin-bottom: 3rem;
}

.footer-brand-modern {
    margin-bottom: 2rem;
}

.footer-logo-modern {
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
}

.footer-desc-modern {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-size: 1rem;
}

.footer-title-modern {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.footer-links-modern {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-modern li {
    margin-bottom: 0.75rem;
}

.footer-links-modern a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-links-modern a:hover {
    color: white;
    padding-left: 5px;
}

.footer-contact-modern {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-modern li {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.footer-contact-modern li i {
    color: var(--primary-light);
    font-size: 1.1rem;
    margin-top: 0.2rem;
}

.footer-contact-modern a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-contact-modern a:hover {
    color: white;
}

.footer-bottom-modern {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright-modern {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 0.9rem;
}

.footer-social-modern {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.social-link-modern {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-link-modern:hover {
    background: var(--primary);
    transform: translateY(-3px);
    color: white;
}

/* Responsive */
@media (max-width: 1200px) {
    .brands-hero-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        height: auto;
        min-height: 600px;
    }
    
    .brand-hero-item {
        min-height: 300px;
    }
    
    .hero-title-modern {
        font-size: 3.5rem;
    }
    
    .section-title-modern {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .hero-title-modern {
        font-size: 3rem;
    }
    
    .section-title-modern {
        font-size: 2rem;
    }
    
    .about-wrapper-modern {
        grid-template-columns: 1fr;
    }
    
    .cta-wrapper-modern {
        flex-direction: column;
    text-align: center;
}

    .cta-title-modern {
        font-size: 2rem;
}
    }
    
@media (max-width: 768px) {
    .brands-hero-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 1fr);
        min-height: 400px;
    }
    
    .brand-hero-item {
        min-height: 300px;
    }
    
    .hero-title-modern {
        font-size: 2.5rem;
    }
    
    .hero-subtitle-modern {
        font-size: 1.1rem;
    }
    
    .stats-grid-modern,
    .services-list-modern,
    .brands-grid-modern-full,
    .blog-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .service-item-modern {
        flex-direction: column;
        text-align: center;
    }
    
    .service-number-modern {
        margin: 0 auto;
    }
    
    .footer-social-modern {
        justify-content: center;
        margin-top: 1rem;
    }
    
    /* Mobil için ek iyileştirmeler */
    .section-title-modern {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .section-badge-modern {
        font-size: 0.85rem;
        padding: 0.4rem 1rem;
    }
    
    .trust-title {
        font-size: 2rem;
    }
    
    .stat-number-modern-card {
        font-size: 2.5rem;
    }
    
    .production-stages-modern {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-wrapper-modern {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-hero-section {
        padding: 60px 0 40px;
    }
    
    .contact-form-wrapper-modern {
        padding: 1.5rem;
    }
    
    .blog-hero-section h1 {
        font-size: 2rem;
    }
    
    .blog-hero-section p {
        font-size: 1rem;
    }
    
    .navbar {
        padding: 0.75rem 0;
    }
    
    .nav-link {
        padding: 0.5rem 1rem !important;
        font-size: 0.9rem;
    }
    
    .btn-modern {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
    
    .footer-modern {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-col {
        margin-bottom: 2rem;
    }
    
    .brand-hero-logo {
        padding: 0.75rem 1rem;
    }
    
    .brand-hero-item:hover .brand-hero-logo {
        transform: translateY(-80px);
    }
    
    .brand-hero-content {
        bottom: 10px;
        padding: 0 1rem;
    }
    
    .brand-hero-url {
        font-size: 0.8rem;
        padding: 0.4rem 0.75rem;
    }
}

@media (max-width: 576px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .section-title-modern {
        font-size: 1.5rem;
    }
    
    .trust-title {
        font-size: 1.75rem;
    }
    
    .stat-number-modern-card {
        font-size: 2rem;
    }
    
    .btn-modern {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
        width: 100%;
    }
    
    .contact-item-modern {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon-modern {
        margin: 0 auto;
    }
    
    .blog-card-modern {
        margin-bottom: 1.5rem;
    }
    
    .blog-detail-content {
        padding: 1rem;
    }
    
    .blog-detail-title {
        font-size: 1.5rem;
    }
    
    .map-wrapper-modern iframe {
        height: 300px;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* İletişim Sayfası Stilleri */
.contact-hero-section {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.contact-hero-content {
    padding-right: 2rem;
}

.contact-info-modern {
    margin-top: 3rem;
}

.contact-item-modern {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    gap: 1.5rem;
}

.contact-icon-modern {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-details-modern h5 {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-details-modern p {
    color: var(--gray);
    margin: 0;
    line-height: 1.8;
}

.contact-details-modern a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details-modern a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.contact-form-wrapper-modern {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.contact-form-modern .form-label {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.form-control-modern,
.form-select-modern {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.form-control-modern:focus,
.form-select-modern:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(31, 74, 168, 0.1);
    outline: none;
}

.alert-modern {
    border-radius: 8px;
    padding: 1rem 1.25rem;
    border: none;
    margin-bottom: 1.5rem;
}

.map-section {
    padding: 80px 0;
}

.map-wrapper-modern {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

/* Blog Sayfası Stilleri */
.blog-hero-section {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
}

.blog-hero-section h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.blog-hero-section p {
    font-size: 1.25rem;
    opacity: 0.9;
}

.blog-grid-modern-v2 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    padding: 3rem 0;
}

.blog-card-modern {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.blog-card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.blog-card-body-modern {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--gray);
}

.blog-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-card-excerpt {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.blog-card-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.blog-card-link:hover {
    color: var(--primary-dark);
    gap: 0.75rem;
}

.blog-card-arrow {
    font-size: 1.2rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.blog-card-link:hover .blog-card-arrow {
    transform: translateX(5px);
}

.page-link-arrow {
    font-size: 1rem;
    display: inline-block;
}

/* Blog Detay Sayfası */
.blog-detail-hero {
    padding: 100px 0 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.blog-detail-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.blog-detail-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.blog-detail-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #e9ecef;
    color: var(--gray);
}

.blog-detail-image {
    width: 100%;
    border-radius: 12px;
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.blog-detail-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--dark);
    margin-bottom: 2rem;
}

.blog-detail-text p {
    margin-bottom: 1.5rem;
}

.blog-detail-text h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin: 2rem 0 1rem;
}

.blog-detail-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin: 1.5rem 0 1rem;
}

.blog-detail-text ul,
.blog-detail-text ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.blog-detail-text li {
    margin-bottom: 0.75rem;
    line-height: 1.8;
}

/* Responsive İletişim ve Blog */
@media (max-width: 992px) {
    .contact-hero-content {
        padding-right: 0;
        margin-bottom: 3rem;
    }
    
    .blog-grid-modern-v2 {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 1.5rem;
    }
    
    .blog-hero-section h1 {
        font-size: 2.5rem;
    }
    
    .blog-detail-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-form-wrapper-modern {
        padding: 1.5rem;
    }
    
    .contact-item-modern {
        flex-direction: column;
        gap: 1rem;
    }
    
    .blog-grid-modern-v2 {
        grid-template-columns: 1fr;
    }
    
    .blog-hero-section h1 {
        font-size: 2rem;
    }
    
    .blog-detail-content {
        padding: 1.5rem;
    }
    
    .blog-detail-title {
        font-size: 1.75rem;
    }
    
    .blog-detail-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

/* Utilities */
.text-primary {
    color: var(--primary) !important;
}

.bg-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%) !important;
}
