/* CSS Optimizasyonları ve Modern Özellikler */
:root {
    /* Ana renkler */
    --primary-color: #007bff;
    --secondary-color: #6c757d;
    --success-color: #28a745;
    --info-color: #17a2b8;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    
    /* Font boyutları */
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.25rem;
    --font-size-xl: 1.5rem;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Z-index layers */
    --z-index-dropdown: 1000;
    --z-index-sticky: 1020;
    --z-index-fixed: 1030;
    --z-index-modal: 1040;
    --z-index-popover: 1050;
    --z-index-tooltip: 1060;

    /* Footer degrade renkleri (global kullanım için) */
    --footer-start: #2c3e50;
    --footer-end: #34495e;
}

/* Reset ve base stiller */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    overflow-x: hidden;
}

/* Performans optimizasyonları */
img {
    max-width: 100%;
    height: auto;
    will-change: transform;
}

/* Modern özellikler */
@supports (display: grid) {
    .grid-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: var(--spacing-md);
    }
}

/* Lazy loading için */
.lazy-load {
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.lazy-load.loaded {
    opacity: 1;
}

/* Modern animasyonlar */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeIn var(--transition-normal) forwards;
}

/* Responsive tasarım için modern yaklaşım */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

@media screen and (max-width: 768px) {
    :root {
        --font-size-base: 0.9rem;
    }
    
    .container {
        padding: 0 var(--spacing-md);
    }
}

/* Performans için will-change kullanımı */
.navbar {
    will-change: transform;
    transition: transform var(--transition-normal);
}

.scroll-animation {
    will-change: opacity, transform;
}

/* Modern form stilleri */
.form-control {
    appearance: none;
    border: 1px solid var(--secondary-color);
    border-radius: 4px;
    padding: var(--spacing-sm) var(--spacing-md);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

/* Erişilebilirlik iyileştirmeleri */
:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

@media (prefers-color-scheme: dark) {
    :root {
        --light-color: #343a40;
        --dark-color: #f8f9fa;
    }
    
    body {
        background-color: var(--light-color);
        color: var(--dark-color);
    }
}

/* Ana Tema Değişkenleri */
:root {
    --bg-main: #e5e9f0;
    --bg-section-1: #f0f2f7;
    --bg-section-2: #ffffff;
    --bg-white: #ffffff;
    --bg-dark: #2c3e50;
    --bg-gradient: linear-gradient(135deg, #eef2f7 0%, #ffffff 100%);
    --text-dark: #2c3e50;
    --text-light: #505d6b;
    --text-muted: #6c757d;
    --link-color: #0056b3;
    --link-hover: #003d82;
    --section-padding: 100px;
    --button-gradient: linear-gradient(45deg, #2c3e50, #34495e);
    --button-gradient-hover: linear-gradient(45deg, #34495e, #2c3e50);
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-main);
}

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 1000;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}

.nav-container {
    width: 80%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 1rem;
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: flex-end;
    height: 80px;
    position: relative;
}

.nav-logo img {
    height: 70px;
    width: auto;
    filter: brightness(0) invert(1);
    padding: 0;
    object-fit: contain;
    transform: scale(1.8);
    margin-bottom: -5px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
    height: 80px;
    align-items: center;
}

.nav-links li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    padding: 8px 12px;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: #FFD700;
}

.nav-links li a.campaign-link {
    background: #FFD700;
    color: var(--primary-color) !important;
    padding: 6px 15px !important;
    border-radius: 20px;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    font-size: 0.9rem !important;
}

.nav-links li a.campaign-link:hover {
    background: #ffffff !important;
    transform: translateY(-2px);
}

.iletisim-btn {
    background: #FFD700;
    color: #000 !important;
    padding: 6px 15px !important;
    border-radius: 20px;
    margin-left: 4px;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    font-size: 0.9rem !important;
}

.iletisim-btn:hover {
    background: #ffffff !important;
    transform: translateY(-2px);
    color: #000 !important;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1000;
}

.mobile-menu-btn i {
    color: #ffffff;
    font-size: 24px;
    transition: transform 0.3s ease;
}

@media (max-width: 768px) {
    .nav-container {
        justify-content: space-between;
        padding: 0 15px;
        height: 60px;
    }

    .nav-logo {
        display: flex;
        height: 60px;
        align-items: center;
        justify-content: center;
        margin-top: 20px;
    }

    .nav-logo img {
        height: 35px;
        transform: scale(1.4);
        margin: 0;
        padding: 0;
        object-fit: contain;
    }

    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 8px;
        z-index: 1000;
    }

    .mobile-menu-btn i {
        color: #ffffff;
        font-size: 24px;
        transition: transform 0.3s ease;
    }

    .nav-links {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: 50vh; /* Yarım ekran yüksekliği */
        background: #fff;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        padding: 20px;
        transition: 0.3s ease-in-out;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links li a {
        padding: 10px 15px;
        font-size: 16px;
        display: block;
        width: 100%;
        white-space: nowrap;
        color: #333;
    }

    .nav-links li a:hover {
        background: #f5f5f5;
    }

    .campaign-link,
    .iletisim-btn {
        background: none;
        padding: 10px 15px;
        font-size: 16px;
        color: #333;
        border: none;
    }

    .campaign-link:hover,
    .iletisim-btn:hover {
        background: #f5f5f5;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 10px;
    }

    .nav-logo {
        height: 50px;
        margin-top: 20px;
    }

    .nav-logo img {
        height: 30px;
        transform: scale(1.2);
    }

    .mobile-menu-btn i {
        font-size: 22px;
    }

    .nav-links li a {
        font-size: 1rem;
        padding: 8px 0;
    }

    .campaign-link,
    .iletisim-btn {
        padding: 6px 15px !important;
        font-size: 0.9rem !important;
    }
}

/* Genel Container Stili */
.container {
    width: 80%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Section Genel Stili */
section {
    padding: var(--section-padding) 0;
    position: relative;
    overflow: hidden;
}

section:nth-child(odd) {
    background: var(--bg-section-1);
    position: relative;
}

section:nth-child(even) {
    background: var(--bg-section-2);
    position: relative;
}

/* Section Header Stili */
.section-header {
    text-align: center;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    transform: translateZ(0);
    position: relative;
    padding: 20px;
    background: none;
    border-radius: 15px;
}

.section-header h2 {
    font-size: 2.2rem;
    background: linear-gradient(45deg, #1a2a6c, #0056b3);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 15px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #1a2a6c, #0056b3);
    border-radius: 2px;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-top: 1rem;
    background: linear-gradient(45deg, #2c3e50, #34495e);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 500;
}

/* İletişim bölümü için özel başlık stili */
#contact .section-header h2 {
    background: none;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}

#contact .section-header p {
    background: none;
    color: rgba(255, 255, 255, 0.9) !important;
    -webkit-text-fill-color: rgba(255, 255, 255, 0.9) !important;
}

#contact .section-header {
    background: none !important;
}

/* Hero Section Yeni Stiller */
.hero {
    position: relative;
    padding: 0;
    background-color: rgba(255, 255, 255, 0.9); /* Beyaz arka plan ekledim */
    overflow: hidden;
    max-width: 100%;
    margin: 0;
    border-radius: 0;
    margin-top: 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.95),
        rgba(255, 255, 255, 0.85)
    );
    z-index: 1;
}

/* Hero section için yeni stil eklemeleri */
.hero {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    position: relative;
}

.hero-content {
    width: 80%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0;
    position: relative;
    z-index: 2;
}

.hero-text {
    position: relative;
}

.hero-text h1 {
    color: var(--primary-color);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    position: relative;
    animation: slideInLeft 1s ease-out;
}

.hero-text .highlight {
    display: block;
    color: var(--accent-color);
    font-size: 3.5rem;
    margin-top: 0.5rem;
    position: relative;
    animation: slideInLeft 1s ease-out 0.2s;
}

.hero-text p {
    color: var(--text-dark);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.05);
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    animation: fadeIn 1s ease-out 0.4s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 3rem;
    animation: fadeIn 1s ease-out 0.6s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    background: #ffffff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0056b3;
    margin-bottom: 10px;
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    color: #333333;
    font-weight: 500;
    display: block;
}

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

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

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

/* Çözüm Ortakları Bölümü */
.hero-partners {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    animation: fadeIn 1s ease-out 1s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.partners-text {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
    font-weight: 500;
}

.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.partners-logos img {
    height: 45px;
    opacity: 0.6;
    transition: all 0.3s ease;
    filter: grayscale(100%);
}

.partners-logos img:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* Featured Services */
.featured-services {
    padding: 50px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.service-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    color: #333333;
}

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

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.7) 0%,
        rgba(255, 255, 255, 0.8) 50%,
        rgba(255, 255, 255, 0.85) 100%
    );
    z-index: 1;
    transition: all 0.4s ease;
}

.service-card:hover::before {
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.6) 0%,
        rgba(255, 255, 255, 0.7) 50%,
        rgba(255, 255, 255, 0.8) 100%
    );
}

.service-card > * {
    position: relative;
    z-index: 2;
}

.service-card h3 {
    color: #333333;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-card p {
    color: #333333;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-features {
    margin: 20px 0;
}

.service-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features ul li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #444;
    font-size: 14px;
}

.service-features ul li i {
    color: #1a5f7a;
    font-size: 16px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    color: #fff;
    background: #1a5f7a;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    margin-top: 20px;
    font-weight: 500;
    font-size: 15px;
}

.service-link:hover {
    background: #156088;
    transform: translateX(5px);
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(3px);
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        min-height: 300px;
        padding: 25px;
    }
}

/* Why Choose Us */
.why-choose-us {
    background: var(--bg-section-1);
    padding: 100px 0;
}

.content-grid {
    text-align: center;
}

.text-content {
    max-width: 800px;
    margin: 0 auto;
}

/* Testimonials */
.testimonials {
    background: var(--bg-section-2);
    padding: 100px 0;
}

.testimonial-card {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* İletişim Bölümü Görünürlük Ayarları */
.contact,
#contact,
.contact-content,
.contact-form,
.contact-info,
.contact-item,
.form-group,
.submit-btn,
#particles-js {
    display: block !important;
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
    height: 100%;
}

.contact-info, 
.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.info-header {
    text-align: center;
    margin-bottom: 30px;
}

.info-items {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    gap: 25px;
    flex-grow: 1;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(26, 95, 122, 0.05);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    height: 100px;
    margin-bottom: 15px;
}

.item-icon {
    min-width: 50px;
    height: 50px;
    background: #1a5f7a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.item-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.item-content h4 {
    color: #1a5f7a;
    margin-bottom: 5px;
    font-size: 1.1em;
}

.item-content p {
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.social-media {
    margin-top: 30px;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.social-icons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 15px;
}

@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .contact-info,
    .contact-form {
        height: auto;
    }

    .info-items {
        gap: 20px;
    }

    .info-item {
        height: auto;
        min-height: 100px;
        padding: 15px;
    }

    .item-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }
}

@media (max-width: 480px) {
    .contact-info,
    .contact-form {
        padding: 20px;
    }

    .info-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        height: auto;
        min-height: 120px;
    }

    .item-icon {
        margin-bottom: 10px;
    }

    .item-content {
        text-align: center;
    }
}

.section-header h2 {
    color: white;
}

.section-header p {
    color: rgba(255, 255, 255, 0.9);
}

.info-header,
.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.info-icon,
.form-icon {
    width: 60px;
    height: 60px;
    background: #1a5f7a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.info-icon i,
.form-icon i {
    font-size: 24px;
    color: white;
}

.info-header h3,
.form-header h3 {
    color: #1a5f7a;
    font-size: 1.5em;
    margin-bottom: 10px;
}

.info-header p,
.form-header p {
    color: #666;
    font-size: 0.9em;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(26, 95, 122, 0.05);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.item-icon {
    width: 45px;
    height: 45px;
    background: #1a5f7a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.item-icon i {
    font-size: 18px;
    color: white;
}

.item-content h4 {
    color: #1a5f7a;
    font-size: 1em;
    margin-bottom: 5px;
}

.item-content p {
    color: #444;
    font-size: 0.9em;
}

.social-media {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.1);
    text-align: center;
}

.social-media h4 {
    color: #1a5f7a;
    font-size: 1.1em;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon.whatsapp { background: #25D366; }
.social-icon.instagram { background: #E4405F; }
.social-icon.facebook { background: #1877F2; }
.social-icon.linkedin { background: #0A66C2; }

.form-group {
    margin-bottom: 20px;
}

.input-wrapper {
    position: relative;
}

.input-wrapper i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #1a5f7a;
    font-size: 18px;
}

.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1em;
    transition: all 0.3s ease;
    background: white;
}

.input-wrapper textarea {
    min-height: 120px;
    resize: none;
    padding-top: 12px;
}

.input-wrapper i.fa-message {
    top: 25px;
    transform: none;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: #1a5f7a;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: auto;
}

.submit-btn:hover {
    background: #2c3e50;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.map-container {
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Hover Efektleri */
.info-item:hover {
    transform: translateY(-3px);
    background: rgba(26, 95, 122, 0.1);
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.input-wrapper input:focus,
.input-wrapper select:focus,
.input-wrapper textarea:focus {
    outline: none;
    border-color: #1a5f7a;
    box-shadow: 0 0 0 3px rgba(26, 95, 122, 0.1);
}

.submit-btn:hover {
    background: #156088;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Mobil Responsive */
@media (max-width: 768px) {
    .contact {
        padding: 40px 0;
    }

    .contact .container {
        padding: 0 15px;
        width: 95%;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .contact-info,
    .contact-form {
        width: 100%;
        max-width: 100%;
    }

    .info-items {
        display: grid;
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .social-icons {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(40px, 1fr));
        gap: 10px;
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 1.6em;
    }

    .contact-info,
    .contact-form {
        padding: 15px;
    }

    .info-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .item-icon {
        margin-bottom: 10px;
    }

    .map-container {
        height: 250px;
        margin-top: 20px;
    }

    .input-wrapper input,
    .input-wrapper select,
    .input-wrapper textarea {
        font-size: 16px; /* iOS için daha iyi input deneyimi */
    }
}

/* Footer */
.footer {
    --footer-start: #2c3e50;
    --footer-end: #34495e;
    background: linear-gradient(135deg, var(--footer-start) 0%, var(--footer-end) 100%);
    padding: 60px 0 0;
    position: relative;
    z-index: 2;
    margin-top: -1px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-info {
    flex: 1;
}

.footer-links {
    flex: 1;
}

.footer-social {
    flex: 1;
    text-align: center;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.footer-logo {
    text-align: center;
    margin: 30px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 36px; /* 20% smaller from 45px */
}

.footer-logo img {
    height: 134px; /* 20% smaller from 168px */
    width: auto;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
    margin: 0;
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 0;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
        padding: 0 20px;
    }

    .footer-info, 
    .footer-links, 
    .footer-social {
        width: 100%;
        text-align: center;
    }

    .footer-info p {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }

    .footer-links h4, 
    .footer-social h4 {
        font-size: 1.1em;
        margin-bottom: 15px;
    }

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

    .footer-links ul li a {
        font-size: 0.9rem;
        padding: 8px 0;
        margin-bottom: 0;
    }

    .footer-social .social-icons {
        gap: 12px;
        margin-bottom: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-social .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1em;
    }

    .footer-logo {
        margin: 20px auto;
    }
    
    .footer-logo img {
        height: 96px; /* 20% smaller from 120px */
    }

    .footer-bottom {
        margin-top: 30px;
        padding: 15px 0;
    }

    .footer-bottom p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 30px 0 0;
    }

    .footer-content {
        gap: 25px;
        padding: 0 15px;
    }

    .footer-info p {
        font-size: 0.85rem;
    }

    .footer-links h4, 
    .footer-social h4 {
        font-size: 1em;
    }

    .footer-links ul li a {
        font-size: 0.85rem;
    }

    .footer-social .social-icons {
        gap: 10px;
    }

    .footer-social .social-icon {
        width: 35px;
        height: 35px;
        font-size: 1em;
    }

    .footer-logo {
        height: 35px;
        margin: 15px auto;
    }
    
    .footer-logo img {
        height: 77px; /* 20% smaller from 96px */
    }

    .footer-bottom p {
        font-size: 0.8rem;
        padding: 0 15px;
    }
}

.footer-info p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 15px;
}

.footer-links h4, .footer-social h4 {
    color: #ffffff;
    font-size: 1.2em;
    margin-bottom: 20px;
}

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

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

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: #FFD700;
}

.footer-social .social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    justify-content: center;
}

.footer-social .social-icon {
    width: 45px;
    height: 45px;
    background: #ffffff !important;
    color: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.3em;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.footer-social .social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.footer-social .social-icon.whatsapp:hover {
    background: #25D366 !important;
    color: white;
}

.footer-social .social-icon.instagram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%) !important;
    color: white;
}

.footer-social .social-icon.facebook:hover {
    background: #1877F2 !important;
    color: white;
}

.footer-social .social-icon.linkedin:hover {
    background: #0A66C2 !important;
    color: white;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    text-align: center;
    margin-top: 40px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-info, .footer-links, .footer-social {
        width: 100%;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-logo {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .footer-logo img {
        height: 50px;
        filter: brightness(0) invert(1);
        margin: 0 auto;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .container,
    .nav-container,
    .footer-content,
    .hero-content,
    .services-grid {
        width: 95%;
        padding: 0 10px;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }
}

/* Karşılama Ekranı */
.welcome-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #1a2a6c 0%, #2c3e50 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.welcome-content {
    text-align: center;
    padding: 20px;
    max-width: 100%;
    width: 600px;
}

.welcome-logo {
    margin-bottom: 30px;
}

.welcome-logo img {
    max-width: 300px;
    height: auto;
    filter: brightness(0) invert(1);
}

.welcome-text {
    color: #ffffff;
    opacity: 0;
    animation: fadeIn 1s ease forwards;
    animation-delay: 0.5s;
}

.welcome-text p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 15px 0;
    color: #ffffff;
}

.welcome-text .highlight {
    color: #ffffff;
    font-weight: 600;
}

@media screen and (max-width: 768px) {
    .welcome-content {
        padding: 15px;
        width: 90%;
    }

    .welcome-logo img {
        max-width: 250px;
    }

    .welcome-text {
        width: 100%;
    }

    .welcome-text p {
        font-size: 1rem;
        margin: 10px 0;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
}

@media screen and (max-width: 480px) {
    .welcome-content {
        padding: 10px;
        width: 95%;
    }

    .welcome-logo img {
        max-width: 200px;
    }

    .welcome-text p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
}

/* Sağ Alt Köşe Ekranı */
.corner-screen {
    position: fixed;
    bottom: 20px;
    right: -400px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 25px;
    z-index: 1000;
    display: none;
    max-width: 320px;
    width: 90%;
    transition: all 0.5s ease-out;
    box-sizing: border-box;
}

.corner-screen.active {
    display: block;
    right: 20px;
}

.corner-screen-content {
    width: 100%;
    box-sizing: border-box;
}

.corner-screen-header {
    text-align: center;
    margin-bottom: 20px;
}

.corner-screen-header i {
    color: #FFD700;
    font-size: 28px;
    margin-bottom: 12px;
}

.corner-screen-header h3 {
    color: #26428B;
    font-size: 22px;
    margin: 0;
    line-height: 1.3;
}

.campaign-text {
    text-align: center;
    margin: 15px 0;
}

.campaign-highlight {
    color: #26428B;
    font-size: 28px;
    font-weight: bold;
    margin: 12px 0;
    line-height: 1.2;
}

.campaign-description {
    color: #666;
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.5;
}

.corner-timer-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 20px 0;
}

.corner-timer-item {
    background: #26428B;
    color: white;
    padding: 12px 8px;
    border-radius: 8px;
    text-align: center;
}

.corner-timer-item .number {
    font-size: 28px;
    font-weight: bold;
    color: #fff;
    display: block;
    margin-bottom: 4px;
    line-height: 1;
}

.corner-timer-item .label {
    font-size: 12px;
    color: #fff;
    display: block;
    text-transform: uppercase;
    font-weight: 500;
}

.campaign-button {
    display: inline-block;
    background: #26428B;
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    margin-top: 15px;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .corner-screen {
        max-width: 280px;
        bottom: 70px; /* WhatsApp butonu için boşluk */
        padding: 20px;
    }

    .corner-screen.active {
        right: 10px;
    }

    .corner-screen-header h3 {
        font-size: 20px;
    }

    .campaign-highlight {
        font-size: 24px;
    }

    .campaign-description {
        font-size: 14px;
    }

    .corner-timer-container {
        gap: 8px;
    }

    .corner-timer-item {
        padding: 10px 6px;
    }

    .corner-timer-item .number {
        font-size: 24px;
    }

    .corner-timer-item .label {
        font-size: 11px;
    }

    .campaign-button {
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .corner-screen {
        max-width: 260px;
        padding: 15px;
    }

    .corner-screen-header h3 {
        font-size: 18px;
    }

    .campaign-highlight {
        font-size: 22px;
    }

    .campaign-description {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .corner-timer-item .number {
        font-size: 22px;
    }

    .corner-timer-item .label {
        font-size: 10px;
    }

    .campaign-button {
        padding: 10px 18px;
        font-size: 13px;
    }
}

/* Hizmet Sayfası Stilleri */
.service-hero {
    padding: 0;
    margin: 0;
    background: linear-gradient(135deg, #1a5f7a 0%, #2c3e50 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(26, 42, 108, 0.9), rgba(0, 86, 179, 0.7));
}

.service-hero-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0;
}

.service-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.service-hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.service-details {
    padding: 80px 0;
    background: var(--bg-section-2);
}

.service-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.service-intro h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.service-intro p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
}

.service-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 40px 0;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}

/* Kuyu inkişafı sayfası için özel grid */
.kuyu-inkisafi .service-features-grid {
    grid-template-columns: repeat(4, 1fr);
    max-width: 1400px;
}

.service-card:first-of-type {
    background-image: url('images/makina4.jpg');
    background-size: cover;
    background-position: center;
}

.service-card:nth-of-type(2) {
    background-image: url('images/jeofizik-su-arama-001.jpg');
    background-size: cover;
    background-position: center;
}

.service-card:nth-of-type(3) {
    background-image: url('images/dalgıçpompa.jpg');
    background-size: cover;
    background-position: center;
}

.service-card:nth-of-type(4) {
    background-image: url('images/kuyu-inkisafi.jpg');
    background-size: cover;
    background-position: center;
}

.service-card:nth-of-type(5) {
    background-image: url('images/pompa.jpg');
    background-size: cover;
    background-position: center;
}

.service-card:nth-of-type(6) {
    background-image: url('images/makinaben3.jpg');
    background-size: cover;
    background-position: center;
}

.service-card.su-sondaji {
    background-image: url('./images/makina4.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-card.su-sondaji::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.service-card.su-sondaji * {
    position: relative;
    z-index: 2;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.service-card.su-sondaji:hover::before {
    background: rgba(0, 0, 0, 0.4);
}

.service-card.su-sondaji:hover {
    transform: translateY(-10px);
}

.feature-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    height: 280px; /* Sabit yükseklik */
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: var(--primary-color);
}

.feature-card i {
    font-size: 2em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature-card h3 {
    color: var(--primary-color);
    font-size: 1.3em;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.feature-card ul li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    color: #555;
    font-size: 0.95em;
    text-align: center;
}

@media (max-width: 768px) {
    .feature-card {
        height: auto;
        min-height: 280px;
        padding: 25px 15px;
    }
}

.service-process {
    text-align: center;
    margin: 80px 0;
}

.service-process h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.step {
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.step p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.service-advantages {
    text-align: center;
    margin: 80px 0;
}

.service-advantages h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.advantage-item {
    padding: 30px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.advantage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.advantage-item i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.advantage-item h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.advantage-item p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.service-cta {
    position: relative;
    padding: 80px 0;
    z-index: 1;
}

.cta-content {
    position: relative;
    text-align: center;
    z-index: 2;
}

.cta-content h2 {
    color: #ffffff;
    font-size: 2.2rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.cta-content p {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.primary-btn, .secondary-btn {
    padding: 18px 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.primary-btn {
    background: #ffffff;
    color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    background: #f8f9fa;
}

.primary-btn i {
    font-size: 1.2rem;
    transition: transform 0.4s ease;
}

.primary-btn:hover i {
    transform: rotate(15deg);
}

.secondary-btn {
    background: #25D366;  /* WhatsApp yeşili */
    color: #ffffff;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.secondary-btn:hover {
    background: #128C7E;  /* Koyu WhatsApp yeşili */
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.secondary-btn i {
    font-size: 1.2rem;
    transition: transform 0.4s ease;
}

.secondary-btn:hover i {
    transform: scale(1.1);
}

.service-cta::before {
    display: none;
}

@media (max-width: 992px) {
    .service-features-grid,
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .service-hero-content h1 {
        font-size: 2.5rem;
    }

    .service-features-grid,
    .advantages-grid,
    .process-steps {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 20px;
    }

    .primary-btn, .secondary-btn {
        width: 100%;
        justify-content: center;
        padding: 16px 30px;
    }
}

.pump-types {
    margin: 80px 0;
    text-align: center;
}

.pump-types h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.pump-types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.pump-type-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: left;
}

.pump-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.pump-type-card i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.pump-type-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.pump-type-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pump-type-card ul li {
    color: var(--text-light);
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.pump-type-card ul li::before {
    content: '→';
    color: var(--accent-color);
    position: absolute;
    left: 0;
}

@media (max-width: 992px) {
    .pump-types-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pump-types-grid {
        grid-template-columns: 1fr;
    }
    
    .pump-type-card {
        padding: 30px 20px;
    }
}

/* Sosyal Sorumluluk Banner Stilleri */
.social-impact-banner {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    margin: 0;
    position: relative;
    overflow: hidden;
}

.impact-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 25px;
    align-items: center;
}

.impact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1a2a6c 0%, #0056b3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.impact-icon i {
    font-size: 24px;
    color: #ffffff;
}

.impact-text {
    max-width: 600px;
}

.impact-text h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.impact-text p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.impact-certificate {
    padding: 15px;
}

.impact-certificate i {
    font-size: 24px;
    color: #FFD700;
}

.impact-certificate p {
    font-size: 0.95rem;
    margin: 0;
    color: var(--text-light);
}

.impact-progress {
    background: #ffffff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    width: 250px;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.progress-info span {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

.progress-percentage {
    color: var(--accent-color) !important;
}

.progress-bar {
    height: 8px;
    background: rgba(26, 42, 108, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 25px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(45deg, #1a2a6c, #0056b3);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.impact-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.impact-stats .stat {
    text-align: center;
    padding: 15px;
    background: rgba(26, 42, 108, 0.03);
    border-radius: 8px;
}

.impact-stats .stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.impact-stats .stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

@media (max-width: 1200px) {
    .impact-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .impact-progress {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .social-impact-banner {
        padding: 30px 20px;
    }
    
    .impact-text h3 {
        font-size: 1.5rem;
    }
}

/* Afrika Projesi Bölümü */
.africa-project {
    position: relative;
    padding: 60px 0;
    background: linear-gradient(135deg, #1a237e, #0d47a1);
    color: #fff;
    overflow: hidden;
}

.africa-project::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/pattern.png');
    opacity: 0.1;
    z-index: 1;
}

.africa-project .container {
    position: relative;
    z-index: 2;
}

.africa-project .social-impact-banner {
    background: none;
    padding: 0;
}

.impact-video {
    margin-top: 30px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border-radius: 15px;
    overflow: hidden;
}

.impact-video::before {
    display: none; /* Ortadaki play butonunu kaldır */
}

.impact-video::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.1); /* Arka plan gölgesini hafiflet */
    z-index: 1;
}

.impact-video video {
    width: 100%;
    height: auto;
    display: block;
}

/* Video üzerindeki tüm play butonlarını kaldır */
.impact-video .plyr__control--overlaid,
.impact-video .plyr__controls button[data-plyr="play"],
.impact-video .plyr__video-wrapper::before,
.impact-video .plyr__poster::after,
.impact-video > .play-button,
video::-webkit-media-controls-start-playback-button,
video::-webkit-media-controls-play-button {
    display: none !important;
}

/* Video kontrol çubuğunu tamamen kaldır */
video::-webkit-media-controls {
    display: none !important;
}

/* Video üzerindeki tüm kontrolleri kaldır */
.impact-video .plyr__controls {
    display: none !important;
}

@media (max-width: 768px) {
    .africa-project {
        padding: 40px 0;
    }
    
    .impact-video {
        margin-top: 20px;
    }
}

/* Blog Sayfası Geliştirilmiş Stiller */
.blog-hero {
    background: linear-gradient(135deg, #26428B 0%, #1a2a6c 100%);
    padding: 150px 0 100px;
    text-align: center;
    color: #ffffff;
    margin-top: 0;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/pattern.png');
    opacity: 0.1;
    animation: slide 20s linear infinite;
}

.blog-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.blog-hero-content h1 {
    font-size: 4rem;
    margin-bottom: 25px;
    animation: fadeInUp 1s ease-out;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    letter-spacing: -1px;
    line-height: 1.2;
    color: #ffffff;
}

.blog-hero-content p {
    font-size: 1.3rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out 0.2s;
    line-height: 1.8;
    color: #ffffff;
}

/* Blog Kategorileri */
.blog-categories {
    background: #ffffff;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 80px;
    z-index: 99;
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.categories-list {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.category-item {
    padding: 10px 25px;
    border-radius: 50px;
    color: #2c3e50;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
    border: 1px solid rgba(0, 0, 0, 0.05);
    font-weight: 500;
    white-space: nowrap;
}

.category-item:hover,
.category-item.active {
    background: #2c3e50;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .blog-categories {
        top: 60px;
        padding: 10px 0;
    }

    .categories-list {
        gap: 10px;
        padding: 0 15px;
    }

    .category-item {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
}

/* Öne Çıkan Post */
.featured-post {
    padding: 100px 0;
    background: #f8f9fa;
}

.featured-post-card {
    background: #ffffff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(38, 66, 139, 0.12);
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 0;
    transition: all 0.4s ease;
}

.featured-post-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(38, 66, 139, 0.18);
}

.featured-post-image {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.featured-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.featured-post-card:hover .featured-post-image img {
    transform: scale(1.08);
}

.featured-badge {
    position: absolute;
    top: 25px;
    left: 25px;
    background: #26428B;
    color: #ffffff;
    padding: 12px 25px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    box-shadow: 0 8px 25px rgba(38, 66, 139, 0.25);
    font-weight: 600;
}

.featured-post-content {
    padding: 50px;
}

.post-meta {
    display: flex;
    gap: 25px;
    margin-bottom: 25px;
}

.post-meta span {
    color: var(--text-light);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.post-meta .category {
    color: #26428B;
    font-weight: 600;
}

.featured-post-content h2 {
    font-size: 2.5rem;
    color: #26428B;
    margin-bottom: 25px;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.featured-post-content p {
    color: var(--text-light);
    margin-bottom: 35px;
    line-height: 1.8;
    font-size: 1.1rem;
}

.read-more {
    color: #26428B;
    font-weight: 600;
    font-size: 1.1rem;
}

.read-more:hover {
    color: #26428B;
}

/* Blog Posts Grid */
.blog-posts {
    padding: 100px 0;
    background: var(--bg-section-2);
    margin-top: 60px;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-bottom: 60px;
}

.post-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(38, 66, 139, 0.1);
}

.post-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.post-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

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

.post-card:hover .post-image img {
    transform: scale(1.08);
}

.post-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #26428B;
    color: #ffffff;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 0.9rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    font-weight: 600;
}

.post-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.post-content h3 {
    font-size: 1.5rem;
    color: #26428B;
    margin-bottom: 20px;
    line-height: 1.4;
    letter-spacing: -0.3px;
}

.post-content p {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 25px;
    line-height: 1.7;
    flex: 1;
}

.read-time {
    color: var(--text-muted);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.read-time i {
    color: var(--accent-color);
}

/* Load More Button */
.load-more {
    text-align: center;
    margin-top: 60px;
}

.load-more-btn {
    background: #26428B;
    color: #ffffff;
    border: 2px solid #26428B;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.load-more-btn:hover {
    background: #1a2a6c;
    color: #ffffff;
}

.load-more-btn i {
    font-size: 1.2rem;
    transition: transform 0.4s ease;
}

.load-more-btn:hover i {
    transform: rotate(180deg);
}

/* Newsletter Section */
.newsletter {
    background: linear-gradient(135deg, #26428B 0%, #1a2a6c 100%);
    padding: 100px 0;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 15%, 100% 0, 100% 100%, 0 100%);
}

.newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/pattern.png');
    opacity: 0.1;
    animation: slide 20s linear infinite;
}

.newsletter-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-text {
    margin-bottom: 40px;
}

.newsletter-text i {
    font-size: 3.5rem;
    margin-bottom: 25px;
    animation: bounce 2s infinite;
    color: #ffffff;
}

.newsletter-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.newsletter-text p {
    opacity: 0.95;
    font-size: 1.2rem;
    line-height: 1.8;
}

.newsletter-form {
    display: flex;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 18px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.newsletter-form button {
    background: #26428B;
    color: #ffffff;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.newsletter-form button:hover {
    background: #1a2a6c;
    color: #ffffff;
}

@media (max-width: 1200px) {
    .posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .blog-hero-content h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 992px) {
    .featured-post-card {
        grid-template-columns: 1fr;
    }
    
    .featured-post-image {
        height: 400px;
    }
    
    .featured-post-content {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .blog-hero-content h1 {
        font-size: 2.8rem;
    }
    
    .blog-hero-content p {
        font-size: 1.1rem;
    }
    
    .posts-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form button {
        width: 100%;
    }

    .category-item {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
    
    .featured-post-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .blog-hero-content h1 {
        font-size: 2.3rem;
    }
    
    .featured-post-image {
        height: 300px;
    }
}

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

.post-header {
    background: linear-gradient(135deg, #1a5f7a 0%, #2c3e50 100%);
    border-radius: 20px;
    padding: 60px 40px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-width: 1200px;
    color: white;
}

.blog-post {
    padding-top: 0;
    background: linear-gradient(135deg, #1a5f7a 0%, #2c3e50 100%);
}

/* Galeri Navigasyon Butonlarını Gizle */
.gallery-nav {
    display: none !important;
}

.gallery-nav.prev,
.gallery-nav.next {
    display: none !important;
}

/* Galeri navigasyon butonlarını tamamen kaldır */
.nav-btn.prev-btn,
.nav-btn.next-btn {
    display: none !important;
}

/* Lightbox navigasyon butonlarını ve kapat butonunu kaldır */
.lightbox .nav-btn,
.close-lightbox,
.lightbox .close-lightbox {
    display: none !important;
}

#contact {
    position: relative;
    padding: 80px 0;
    background-image: url('images/8.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
    background-attachment: fixed !important;
    background-repeat: no-repeat !important;
}

/* İletişim Bölümü Stilleri */
.contact {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
    position: relative;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-info {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.info-header {
    margin-bottom: 40px;
    text-align: left;
}

.info-header h3 {
    color: #1a5f7a;
    font-size: 28px;
    margin-bottom: 15px;
}

.info-header p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
    height: 100px;
}

.info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    background: white;
}

.item-icon {
    min-width: 60px;
    height: 60px;
    background: #1a5f7a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.item-icon i {
    color: white;
    font-size: 24px;
}

.item-content {
    flex: 1;
}

.item-content h4 {
    color: #1a5f7a;
    font-size: 18px;
    margin-bottom: 5px;
}

.item-content p {
    color: #666;
    font-size: 16px;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 20px;
}

.input-wrapper {
    position: relative;
}

.input-wrapper i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #1a5f7a;
    font-size: 18px;
}

.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1em;
    transition: all 0.3s ease;
    background: white;
}

.input-wrapper textarea {
    min-height: 120px;
    resize: none;
    padding-top: 12px;
}

.input-wrapper i.fa-message {
    top: 25px;
    transform: none;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: #1a5f7a;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: auto;
}

.submit-btn:hover {
    background: #2c3e50;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .contact-info, 
    .contact-form {
        padding: 30px;
    }
    
    .info-header h3 {
        font-size: 24px;
    }
    
    .info-item {
        padding: 15px;
        height: auto;
        min-height: 100px;
    }
    
    .item-icon {
        min-width: 50px;
        height: 50px;
    }
    
    .item-icon i {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .contact-info,
    .contact-form {
        padding: 20px;
    }
    
    .info-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 20px;
    }
    
    .item-content h4 {
        font-size: 16px;
    }
    
    .item-content p {
        font-size: 14px;
    }
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 20px;
}

.social-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.social-icon.whatsapp { 
    background: #25D366; 
}

.social-icon.instagram { 
    background: #E4405F;
}

.social-icon.facebook { 
    background: #1877F2; 
}

.social-icon.linkedin { 
    background: #0A66C2; 
}

@media (max-width: 768px) {
    .social-links {
        margin-top: 20px;
        padding-top: 15px;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-header h2 {
    font-size: 2.5rem;
    color: #1a5f7a;
    margin-bottom: 15px;
}

.contact-header p {
    font-size: 1.1rem;
    color: #666;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 50px;
}

/* İletişim Kartları */
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    color: #333333;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.card-icon {
    width: 50px;
    height: 50px;
    background: #1a5f7a;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.card-icon i {
    font-size: 20px;
    color: white;
}

.card-content {
    flex: 1;
}

.card-content h3 {
    color: #333333;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.card-content p {
    color: #666;
    margin-bottom: 10px;
}

.location-link,
.phone-link,
.email-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1a5f7a;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.location-link:hover,
.phone-link:hover,
.email-link:hover {
    color: #156088;
    gap: 12px;
}

/* Sosyal Medya Kartı */
.social-media-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.social-media-card h3 {
    color: #1a5f7a;
    font-size: 1.2rem;
    margin-bottom: 20px;
    text-align: center;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-icon.whatsapp { background: #25D366; }
.social-icon.instagram { background: #E4405F; }
.social-icon.facebook { background: #1877F2; }
.social-icon.linkedin { background: #0A66C2; }

/* İletişim Formu */
.contact-form-wrapper {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h3 {
    color: #1a5f7a;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.form-header p {
    color: #666;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.input-group label {
    color: #333333;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 8px;
    display: block;
}

.input-group input,
.input-group textarea,
.input-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background: #ffffff;
    color: #333333;
    font-size: 16px;
    transition: all 0.3s ease;
}

.input-group input:focus,
.input-group textarea:focus,
.input-group select:focus {
    border-color: #1a5f7a;
    outline: none;
    box-shadow: 0 0 0 3px rgba(26, 95, 122, 0.1);
}

.input-group textarea {
    height: 120px;
    resize: vertical;
}

.submit-button {
    background: #1a5f7a;
    color: #ffffff;
    padding: 15px 40px;
    border: none;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(26, 95, 122, 0.2);
}

.submit-button:hover {
    background: #26428B;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(26, 95, 122, 0.3);
}

/* Harita */
.map-wrapper {
    width: 100%;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Mobil Responsive */
@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-info-wrapper {
        order: 2;
    }

    .contact-form-wrapper {
        order: 1;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }

    .contact-header h2 {
        font-size: 2rem;
    }

    .contact-card {
        padding: 20px;
    }

    .card-icon {
        width: 40px;
        height: 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .map-wrapper {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .contact-header h2 {
        font-size: 1.8rem;
    }

    .contact-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .card-content {
        width: 100%;
    }

    .social-icons {
        flex-wrap: wrap;
        justify-content: center;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

/* Mobil cihazlar için grafik düzenlemeleri */
@media (max-width: 768px) {
    .chart-container {
        width: 100% !important;
        margin: 20px 0 !important;
        padding: 15px !important;
        height: auto !important;
        min-height: 280px !important;
        background-color: #fff;
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .chart-wrapper {
        display: flex;
        flex-direction: column;
        gap: 30px;
        padding: 10px;
    }

    .chart-title {
        font-size: 16px !important;
        margin-bottom: 10px !important;
        text-align: center;
        color: #333;
    }

    .chart-description {
        font-size: 14px !important;
        margin-bottom: 15px !important;
        text-align: center;
        color: #666;
    }

    canvas {
        width: 100% !important;
        height: auto !important;
        max-height: 250px !important;
    }
}

/* Daha küçük mobil cihazlar için ek düzenlemeler */
@media (max-width: 480px) {
    .chart-container {
        margin: 15px 0 !important;
        padding: 10px !important;
        min-height: 250px !important;
    }

    .chart-wrapper {
        gap: 20px;
    }

    .chart-title {
        font-size: 14px !important;
    }

    .chart-description {
        font-size: 12px !important;
    }

    canvas {
        max-height: 200px !important;
    }
}

/* Fiyat Tablosu Stilleri */
.price-table {
    width: 100%;
    margin: 20px 0;
}

.price-table table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.price-table th,
.price-table td {
    padding: 15px;
    text-align: center;
    border: 1px solid #e0e0e0;
}

.price-table th {
    background: #1a5f7a;
    color: #fff;
    font-weight: 600;
}

.price-table tr:nth-child(even) {
    background-color: #f8f9fa;
}

.price-table td:first-child {
    font-weight: 600;
    background-color: #f1f1f1;
}

@media (max-width: 768px) {
    .price-table {
        margin: 15px 0;
    }
    
    .price-table table {
        display: block;
        width: 100%;
    }
    
    .price-table thead {
        display: none;
    }
    
    .price-table tbody,
    .price-table tr,
    .price-table td {
        display: block;
        width: 100%;
    }
    
    .price-table tr {
        margin-bottom: 20px;
        background: #fff;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    
    .price-table td {
        text-align: left;
        position: relative;
        padding: 15px 15px 15px 45%;
        border: none;
        border-bottom: 1px solid #eee;
        font-size: 14px;
        line-height: 1.4;
    }
    
    .price-table td:before {
        content: attr(data-label);
        position: absolute;
        left: 15px;
        width: 40%;
        font-weight: 600;
        color: #1a5f7a;
    }
    
    .price-table td:first-child {
        padding: 15px;
        font-size: 16px;
        background: #1a5f7a;
        color: #fff;
        text-align: center;
        border-radius: 8px 8px 0 0;
    }
    
    .price-table td:first-child:before {
        display: none;
    }
    
    .price-table tr:last-child td {
        text-align: center;
        padding: 12px;
        font-style: italic;
        color: #666;
        font-size: 12px;
        background: #f8f9fa;
    }

    .price-table tr:last-child {
        box-shadow: none;
        margin-top: 30px;
    }
}

@media (max-width: 480px) {
    .price-table td {
        font-size: 13px;
        padding: 12px 12px 12px 45%;
    }
    
    .price-table td:first-child {
        font-size: 15px;
        padding: 12px;
    }
    
    .price-table td:before {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .post-header {
        padding: 20px 15px;
        max-width: 90%;
        margin: 20px auto;
        border-radius: 15px;
    }

    .post-header h1 {
        font-size: 1.6rem;
        line-height: 1.3;
        margin-bottom: 15px;
        padding: 0 10px;
    }

    .post-meta {
        font-size: 0.9rem;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .post-header {
        padding: 15px 10px;
        max-width: 95%;
        margin: 15px auto;
    }

    .post-header h1 {
        font-size: 1.3rem;
        line-height: 1.2;
        margin-bottom: 10px;
        padding: 0 5px;
    }

    .post-meta {
        font-size: 0.8rem;
        padding: 0 5px;
        gap: 8px;
    }

    .post-meta span {
        background: rgba(255, 255, 255, 0.1);
        padding: 4px 8px;
        border-radius: 15px;
    }
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 1.8rem;
        padding: 0 10px;
        word-wrap: break-word;
        hyphens: auto;
        white-space: normal;
        line-height: 1.4;
    }

    .section-header p {
        font-size: 0.95rem;
        line-height: 1.5;
        padding: 0 10px;
    }

    .hero-text h1 {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 1rem;
        padding: 0 10px;
        word-wrap: break-word;
        hyphens: auto;
        white-space: normal;
    }

    .hero-text p {
        font-size: 1rem;
        line-height: 1.5;
        padding: 0 10px;
    }

    .container {
        padding: 0 15px;
        width: 100%;
        box-sizing: border-box;
    }

    .service-card {
        padding: 20px 15px;
    }

    .service-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
        word-wrap: break-word;
    }

    .service-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 1.5rem;
        padding: 0 8px;
    }

    .section-header p {
        font-size: 0.9rem;
        padding: 0 8px;
    }

    .hero-text h1 {
        font-size: 1.8rem;
        padding: 0 8px;
    }

    .hero-text p {
        font-size: 0.9rem;
        padding: 0 8px;
    }

    .service-card {
        padding: 15px 10px;
    }

    .service-card h3 {
        font-size: 1.1rem;
    }

    .service-card p {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .projects-section {
        padding: 40px 0;
    }

    .projects-section h2 {
        font-size: 1.8rem;
        padding: 0 10px;
        margin-bottom: 1.5rem;
        word-wrap: break-word;
        hyphens: auto;
        white-space: normal;
    }

    .projects-section p {
        font-size: 0.95rem;
        padding: 0 10px;
        margin-bottom: 2rem;
    }

    .gallery-container {
        padding: 0 10px;
    }

    .gallery-item {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .projects-section h2 {
        font-size: 1.5rem;
        padding: 0 8px;
    }

    .projects-section p {
        font-size: 0.9rem;
        padding: 0 8px;
    }

    .gallery-container {
        padding: 0 8px;
    }

    .gallery-item {
        height: 180px;
    }
}

@media (max-width: 768px) {
    .corner-screen {
        max-width: 90%;
        width: 320px;
        top: 50%;
        left: 50%;
        right: auto;
        bottom: auto;
        transform: translate(-50%, -50%);
        padding: 20px;
        margin: 0;
        position: fixed;
    }

    .corner-screen.active {
        display: block;
        right: auto;
    }

    .corner-screen-header h3 {
        font-size: 1.1em;
        margin-bottom: 10px;
    }

    .campaign-highlight {
        font-size: 1.8em;
        margin: 8px 0;
    }

    .campaign-description {
        font-size: 0.85em;
        margin-bottom: 10px;
    }

    .corner-timer-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        margin: 10px 0;
    }

    .corner-timer-item {
        padding: 6px;
        border-radius: 6px;
    }

    .corner-timer-item .number {
        font-size: 1.1em;
    }

    .corner-timer-item .label {
        font-size: 0.65em;
    }

    .campaign-button {
        padding: 10px;
        font-size: 0.9em;
        margin-top: 10px;
    }

    /* Overlay arka plan için */
    .popup-overlay {
        display: none;
    }

    .popup-overlay.active {
        display: none;
    }
}

/* Kampanya Kartı Stilleri - Masaüstü */
.corner-screen.desktop-popup {
    position: fixed;
}

/* Kampanya Kartı Stilleri - Mobil */
.corner-screen-mobile {
    display: none;
}

@media (max-width: 768px) {
    .corner-screen-mobile {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 90%;
        max-width: 320px;
        background: white;
        border-radius: 15px;
        box-shadow: 0 5px 25px rgba(0,0,0,0.3);
        padding: 20px;
        z-index: 1000;
        opacity: 0;
        transition: opacity 0.5s ease;
    }

    .corner-screen-mobile.active {
        display: block;
        opacity: 1;
    }

    .corner-screen-mobile .close-btn {
        position: absolute;
        top: 10px;
        right: 10px;
        background: none;
        border: none;
        font-size: 24px;
        cursor: pointer;
        color: #666;
        padding: 5px;
        transition: all 0.3s ease;
    }

    .corner-screen-mobile .close-btn:hover {
        color: #333;
        transform: rotate(90deg);
    }

    .mobile-popup-header {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 20px;
    }

    .mobile-popup-header i {
        font-size: 28px;
        color: #FFD700;
    }

    .mobile-popup-header h3 {
        color: #1a5f7a;
        font-size: 1.4em;
        margin: 0;
    }

    .mobile-popup-body {
        text-align: center;
    }

    .mobile-popup-body .discount {
        font-size: 2.2em;
        color: #e74c3c;
        font-weight: 700;
        margin: 15px 0;
    }

    .mobile-popup-body p {
        color: #666;
        margin-bottom: 20px;
        font-size: 1.1em;
    }

    .mobile-timer {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin: 20px 0;
    }

    .mobile-timer-item {
        background: #1a5f7a;
        padding: 12px 8px;
        border-radius: 8px;
        text-align: center;
    }

    .mobile-timer-item .number {
        font-size: 24px;
        font-weight: bold;
        color: white;
        display: block;
        margin-bottom: 4px;
    }

    .mobile-timer-item .label {
        font-size: 12px;
        color: rgba(255, 255, 255, 0.9);
        display: block;
        text-transform: uppercase;
    }

    .mobile-cta-btn {
        display: block;
        background: #1a5f7a;
        color: white;
        text-align: center;
        padding: 14px;
        border-radius: 25px;
        text-decoration: none;
        font-weight: 600;
        margin-top: 20px;
        transition: all 0.3s ease;
    }

    .mobile-cta-btn:hover {
        background: #2c3e50;
        transform: translateY(-2px);
    }
}

/* Overlay Stili */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: -1;
    pointer-events: none;
}

.popup-overlay.active {
    background: transparent;
    pointer-events: none;
}

@media (max-width: 768px) {
    .popup-overlay {
        background: transparent;
        pointer-events: none;
    }
    
    .popup-overlay.active {
        background: transparent;
        pointer-events: none;
    }
}

/* Mini Kampanya İkonu Stilleri */
.mini-campaign-icon {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #1a5f7a;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: white;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 997;
    transition: all 0.3s ease;
}

.mini-campaign-icon.active {
    display: flex;
    animation: bounceIn 0.5s ease;
}

.mini-campaign-icon i {
    font-size: 20px;
    color: #FFD700;
    margin-bottom: 2px;
}

.mini-campaign-timer {
    font-size: 12px;
    font-weight: 500;
}

.mini-campaign-icon:hover {
    transform: scale(1.1);
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 0.9;
        transform: scale(1.1);
    }
    80% {
        opacity: 1;
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Mobil Popup Animasyon Güncellemeleri */
.corner-screen-mobile {
    transform: translate(-50%, -50%) scale(0.3);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.corner-screen-mobile.active {
    transform: translate(-50%, -50%) scale(1);
}

.corner-screen-mobile.closing {
    transform: translate(-50%, -50%) scale(0.3);
    opacity: 0;
}

@media (max-width: 768px) {
    .mini-campaign-icon {
        bottom: 80px;
        right: 15px;
        width: 50px;
        height: 50px;
    }

    .mini-campaign-icon i {
        font-size: 18px;
    }

    .mini-campaign-timer {
        font-size: 10px;
    }
}

/* Masaüstü İletişim Bölümü */
.desktop-contact {
    background: linear-gradient(135deg, var(--footer-start) 0%, var(--footer-end) 100%);
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.desktop-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: none;
    opacity: 0;
}

.desktop-contact .section-header h2 {
    color: #FFD700;
    font-size: 2.5em;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.desktop-contact .section-header p {
    color: #fff;
    font-size: 1.2em;
    position: relative;
    z-index: 1;
}

.desktop-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.desktop-contact-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.desktop-contact-card:hover {
    transform: translateY(-10px);
    background: #fff;
}

.desktop-contact-icon {
    width: 70px;
    height: 70px;
    background: #1a5f7a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(26, 95, 122, 0.3);
}

.desktop-contact-icon i {
    font-size: 28px;
    color: #FFD700;
}

.desktop-contact-card h3 {
    color: #333333;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.desktop-contact-card p {
    color: #333333;
    font-size: 16px;
    margin-bottom: 12px;
}

.desktop-contact-card a {
    color: #333333;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.desktop-contact-card a:hover {
    color: #1a5f7a;
}

/* Form Bölümü */
.desktop-contact-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: 40px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333333;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    color: #333333;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    color: #333333;
    background-color: #ffffff;
    min-height: 150px;
    resize: vertical;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a5f7a;
    box-shadow: 0 0 0 3px rgba(26, 95, 122, 0.1);
}

.submit-button {
    background: #1a5f7a;
    color: #ffffff;
    padding: 15px 40px;
    border: none;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(26, 95, 122, 0.2);
}

.submit-button:hover {
    background: #26428B;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(26, 95, 122, 0.3);
}

.submit-button i {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .desktop-contact {
        padding: 50px 0;
    }

    .desktop-contact .section-header h2 {
        font-size: 1.8em;
    }

    .desktop-contact .section-header p {
        font-size: 1rem;
    }

    .desktop-contact-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 15px;
        margin-top: 20px;
    }

    .desktop-contact-card {
        padding: 20px;
    }

    .desktop-contact-form {
        padding: 20px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-group.full-width {
        grid-column: auto;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 0.9rem;
    }

    .submit-button {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

/* Harita */
.map-wrapper {
    width: 100%;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Mobil Responsive */
@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-info-wrapper {
        order: 2;
    }

    .contact-form-wrapper {
        order: 1;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }

    .contact-header h2 {
        font-size: 2rem;
    }

    .contact-card {
        padding: 20px;
    }

    .card-icon {
        width: 40px;
        height: 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .map-wrapper {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .contact-header h2 {
        font-size: 1.8rem;
    }

    .contact-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .card-content {
        width: 100%;
    }

    .social-icons {
        flex-wrap: wrap;
        justify-content: center;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

/* Mobil cihazlar için grafik düzenlemeleri */
@media (max-width: 768px) {
    .chart-container {
        width: 100% !important;
        margin: 20px 0 !important;
        padding: 15px !important;
        height: auto !important;
        min-height: 280px !important;
        background-color: #fff;
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .chart-wrapper {
        display: flex;
        flex-direction: column;
        gap: 30px;
        padding: 10px;
    }

    .chart-title {
        font-size: 16px !important;
        margin-bottom: 10px !important;
        text-align: center;
        color: #333;
    }

    .chart-description {
        font-size: 14px !important;
        margin-bottom: 15px !important;
        text-align: center;
        color: #666;
    }

    canvas {
        width: 100% !important;
        height: auto !important;
        max-height: 250px !important;
    }
}

/* Daha küçük mobil cihazlar için ek düzenlemeler */
@media (max-width: 480px) {
    .chart-container {
        margin: 15px 0 !important;
        padding: 10px !important;
        min-height: 250px !important;
    }

    .chart-wrapper {
        gap: 20px;
    }

    .chart-title {
        font-size: 14px !important;
    }

    .chart-description {
        font-size: 12px !important;
    }

    canvas {
        max-height: 200px !important;
    }
}

/* Fiyat Tablosu Stilleri */
.price-table {
    width: 100%;
    margin: 20px 0;
}

.price-table table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.price-table th,
.price-table td {
    padding: 15px;
    text-align: center;
    border: 1px solid #e0e0e0;
}

.price-table th {
    background: #1a5f7a;
    color: #fff;
    font-weight: 600;
}

.price-table tr:nth-child(even) {
    background-color: #f8f9fa;
}

.price-table td:first-child {
    font-weight: 600;
    background-color: #f1f1f1;
}

@media (max-width: 768px) {
    .price-table {
        margin: 15px 0;
    }
    
    .price-table table {
        display: block;
        width: 100%;
    }
    
    .price-table thead {
        display: none;
    }
    
    .price-table tbody,
    .price-table tr,
    .price-table td {
        display: block;
        width: 100%;
    }
    
    .price-table tr {
        margin-bottom: 20px;
        background: #fff;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    
    .price-table td {
        text-align: left;
        position: relative;
        padding: 15px 15px 15px 45%;
        border: none;
        border-bottom: 1px solid #eee;
        font-size: 14px;
        line-height: 1.4;
    }
    
    .price-table td:before {
        content: attr(data-label);
        position: absolute;
        left: 15px;
        width: 40%;
        font-weight: 600;
        color: #1a5f7a;
    }
    
    .price-table td:first-child {
        padding: 15px;
        font-size: 16px;
        background: #1a5f7a;
        color: #fff;
        text-align: center;
        border-radius: 8px 8px 0 0;
    }
    
    .price-table td:first-child:before {
        display: none;
    }
    
    .price-table tr:last-child td {
        text-align: center;
        padding: 12px;
        font-style: italic;
        color: #666;
        font-size: 12px;
        background: #f8f9fa;
    }

    .price-table tr:last-child {
        box-shadow: none;
        margin-top: 30px;
    }
}

@media (max-width: 480px) {
    .price-table td {
        font-size: 13px;
        padding: 12px 12px 12px 45%;
    }
    
    .price-table td:first-child {
        font-size: 15px;
        padding: 12px;
    }
    
    .price-table td:before {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .post-header {
        padding: 20px 15px;
        max-width: 90%;
        margin: 20px auto;
        border-radius: 15px;
    }

    .post-header h1 {
        font-size: 1.6rem;
        line-height: 1.3;
        margin-bottom: 15px;
        padding: 0 10px;
    }

    .post-meta {
        font-size: 0.9rem;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .post-header {
        padding: 15px 10px;
        max-width: 95%;
        margin: 15px auto;
    }

    .post-header h1 {
        font-size: 1.3rem;
        line-height: 1.2;
        margin-bottom: 10px;
        padding: 0 5px;
    }

    .post-meta {
        font-size: 0.8rem;
        padding: 0 5px;
        gap: 8px;
    }

    .post-meta span {
        background: rgba(255, 255, 255, 0.1);
        padding: 4px 8px;
        border-radius: 15px;
    }
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 1.8rem;
        padding: 0 10px;
        word-wrap: break-word;
        hyphens: auto;
        white-space: normal;
        line-height: 1.4;
    }

    .section-header p {
        font-size: 0.95rem;
        line-height: 1.5;
        padding: 0 10px;
    }

    .hero-text h1 {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 1rem;
        padding: 0 10px;
        word-wrap: break-word;
        hyphens: auto;
        white-space: normal;
    }

    .hero-text p {
        font-size: 1rem;
        line-height: 1.5;
        padding: 0 10px;
    }

    .container {
        padding: 0 15px;
        width: 100%;
        box-sizing: border-box;
    }

    .service-card {
        padding: 20px 15px;
    }

    .service-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
        word-wrap: break-word;
    }

    .service-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 1.5rem;
        padding: 0 8px;
    }

    .section-header p {
        font-size: 0.9rem;
        padding: 0 8px;
    }

    .hero-text h1 {
        font-size: 1.8rem;
        padding: 0 8px;
    }

    .hero-text p {
        font-size: 0.9rem;
        padding: 0 8px;
    }

    .service-card {
        padding: 15px 10px;
    }

    .service-card h3 {
        font-size: 1.1rem;
    }

    .service-card p {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .projects-section {
        padding: 40px 0;
    }

    .projects-section h2 {
        font-size: 1.8rem;
        padding: 0 10px;
        margin-bottom: 1.5rem;
        word-wrap: break-word;
        hyphens: auto;
        white-space: normal;
    }

    .projects-section p {
        font-size: 0.95rem;
        padding: 0 10px;
        margin-bottom: 2rem;
    }

    .gallery-container {
        padding: 0 10px;
    }

    .gallery-item {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .projects-section h2 {
        font-size: 1.5rem;
        padding: 0 8px;
    }

    .projects-section p {
        font-size: 0.9rem;
        padding: 0 8px;
    }

    .gallery-container {
        padding: 0 8px;
    }

    .gallery-item {
        height: 180px;
    }
}

@media (max-width: 768px) {
    .corner-screen {
        max-width: 90%;
        width: 320px;
        top: 50%;
        left: 50%;
        right: auto;
        bottom: auto;
        transform: translate(-50%, -50%);
        padding: 20px;
        margin: 0;
        position: fixed;
    }

    .corner-screen.active {
        display: block;
        right: auto;
    }

    .corner-screen-header h3 {
        font-size: 1.1em;
        margin-bottom: 10px;
    }

    .campaign-highlight {
        font-size: 1.8em;
        margin: 8px 0;
    }

    .campaign-description {
        font-size: 0.85em;
        margin-bottom: 10px;
    }

    .corner-timer-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        margin: 10px 0;
    }

    .corner-timer-item {
        padding: 6px;
        border-radius: 6px;
    }

    .corner-timer-item .number {
        font-size: 1.1em;
    }

    .corner-timer-item .label {
        font-size: 0.65em;
    }

    .campaign-button {
        padding: 10px;
        font-size: 0.9em;
        margin-top: 10px;
    }

    /* Overlay arka plan için */
    .popup-overlay {
        display: none;
    }

    .popup-overlay.active {
        display: none;
    }
}

/* Kampanya Kartı Stilleri - Masaüstü */
.corner-screen.desktop-popup {
    position: fixed;
}

/* Kampanya Kartı Stilleri - Mobil */
.corner-screen-mobile {
    display: none;
}

@media (max-width: 768px) {
    .corner-screen-mobile {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 90%;
        max-width: 320px;
        background: white;
        border-radius: 15px;
        box-shadow: 0 5px 25px rgba(0,0,0,0.3);
        padding: 20px;
        z-index: 1000;
        opacity: 0;
        transition: opacity 0.5s ease;
    }

    .corner-screen-mobile.active {
        display: block;
        opacity: 1;
    }

    .corner-screen-mobile .close-btn {
        position: absolute;
        top: 10px;
        right: 10px;
        background: none;
        border: none;
        font-size: 24px;
        cursor: pointer;
        color: #666;
        padding: 5px;
        transition: all 0.3s ease;
    }

    .corner-screen-mobile .close-btn:hover {
        color: #333;
        transform: rotate(90deg);
    }

    .mobile-popup-header {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 20px;
    }

    .mobile-popup-header i {
        font-size: 28px;
        color: #FFD700;
    }

    .mobile-popup-header h3 {
        color: #1a5f7a;
        font-size: 1.4em;
        margin: 0;
    }

    .mobile-popup-body {
        text-align: center;
    }

    .mobile-popup-body .discount {
        font-size: 2.2em;
        color: #e74c3c;
        font-weight: 700;
        margin: 15px 0;
    }

    .mobile-popup-body p {
        color: #666;
        margin-bottom: 20px;
        font-size: 1.1em;
    }

    .mobile-timer {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin: 20px 0;
    }

    .mobile-timer-item {
        background: #1a5f7a;
        padding: 12px 8px;
        border-radius: 8px;
        text-align: center;
    }

    .mobile-timer-item .number {
        font-size: 24px;
        font-weight: bold;
        color: white;
        display: block;
        margin-bottom: 4px;
    }

    .mobile-timer-item .label {
        font-size: 12px;
        color: rgba(255, 255, 255, 0.9);
        display: block;
        text-transform: uppercase;
    }

    .mobile-cta-btn {
        display: block;
        background: #1a5f7a;
        color: white;
        text-align: center;
        padding: 14px;
        border-radius: 25px;
        text-decoration: none;
        font-weight: 600;
        margin-top: 20px;
        transition: all 0.3s ease;
    }

    .mobile-cta-btn:hover {
        background: #2c3e50;
        transform: translateY(-2px);
    }
}

/* Overlay Stili */
.popup-overlay {
    display: none;
}

.popup-overlay.active {
    display: none;
}

/* Mini Kampanya İkonu Stilleri */
.mini-campaign-icon {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #1a5f7a;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: white;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 997;
    transition: all 0.3s ease;
}

.mini-campaign-icon.active {
    display: flex;
    animation: bounceIn 0.5s ease;
}

.mini-campaign-icon i {
    font-size: 20px;
    color: #FFD700;
    margin-bottom: 2px;
}

.mini-campaign-timer {
    font-size: 12px;
    font-weight: 500;
}

.mini-campaign-icon:hover {
    transform: scale(1.1);
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 0.9;
        transform: scale(1.1);
    }
    80% {
        opacity: 1;
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Mobil Popup Animasyon Güncellemeleri */
.corner-screen-mobile {
    transform: translate(-50%, -50%) scale(0.3);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.corner-screen-mobile.active {
    transform: translate(-50%, -50%) scale(1);
}

.corner-screen-mobile.closing {
    transform: translate(-50%, -50%) scale(0.3);
    opacity: 0;
}

@media (max-width: 768px) {
    .mini-campaign-icon {
        bottom: 80px;
        right: 15px;
        width: 50px;
        height: 50px;
    }

    .mini-campaign-icon i {
        font-size: 18px;
    }

    .mini-campaign-timer {
        font-size: 10px;
    }
}

.video-item {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 10px;
}

.video-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #000;
}

.video-item .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.video-item:hover .gallery-overlay {
    opacity: 0;
}

.video-item .overlay-content i {
    font-size: 3em;
    color: #fff;
    margin-bottom: 10px;
}

video::-webkit-media-controls {
    display: flex !important;
    opacity: 1 !important;
}

.video-poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.popup-overlay {
    display: none;
}

.popup-overlay.active {
    display: none;
}

@media (max-width: 768px) {
    .popup-overlay {
        display: none;
    }
    
    .popup-overlay.active {
        display: none;
    }
}

@media (max-width: 768px) {
	/* Mobile performance improvements */
	.gallery-section {
		background-attachment: scroll !important;
		background-size: cover;
	}
	.hero {
		background-attachment: scroll !important;
	}
	video[autoplay] {
		/* avoid heavy decoding on mobile */
		animation: none !important;
	}
	/* Reduce box-shadows and blurs on mobile to improve paint time */
	*[style*="box-shadow"] {
		box-shadow: none !important;
	}
	.backdrop-blur, .glass, *[style*="backdrop-filter"] {
		backdrop-filter: none !important;
		-webkit-backdrop-filter: none !important;
	}
}

/* Prefer images over videos for slow networks */
@media (max-width: 768px) and (prefers-reduced-data: reduce) {
	.video-item video { display: none; }
	.video-item .video-poster { display: block; }
}