/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1a5ab9;
    --primary-light: #2979ff;
    --accent: #00d4ff;
    --dark: #1f2937;
    --gray-dark: #6b7280;
    --gray: #9ca3af;
    --gray-light: #e5e7eb;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html, body {
    width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
    max-width: 100vw;
}

.container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0 20px;
}

/* Remove side padding on larger screens */
@media (min-width: 1400px) {
    .container {
        padding: 0 40px;
    }
}

/* Header Styles - Improved for mobile */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(135deg, var(--bg-light) 0%, #f0f7ff 100%);
    backdrop-filter: blur(5px);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.top-info-bar {
    background-color: var(--primary);
    color: var(--white);
    padding: 8px 0;
    font-size: 0.875rem;
    position: relative;
    z-index: 1001;
}

.top-info-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.contact-info-1 {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.contact-item-1 {
    display: flex;
    align-items: center;
    gap: 5px;
}

.contact-item-1 a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.85rem;
}

.contact-item-1 a:hover {
    color: var(--accent);
}

.separator {
    opacity: 0.7;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Sosyal medya ikonlarındaki çizgiyi kaldırmak için */
.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: var(--white);
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
    text-decoration: none; /* Bu satırı ekleyin - çizgiyi kaldırır */
    border: none; /* Ek güvenlik için border'ı kaldırın */
}

/* Sosyal medya ikonlarına özel hover efektleri */
.social-icons a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.8);
    transition: var(--transition);
    z-index: 0;
}

.social-icons a:hover::before {
    opacity: 1;
    transform: scale(1);
}

.social-icons a i {
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.social-icons a:hover i {
    color: var(--white);
    transform: rotate(360deg) scale(1.1);
}

/* Sosyal medya ikonlarına özel renk efektleri */
.social-icons a:nth-child(1):hover i { /* Instagram */
    color: #E4405F !important;
}
.social-icons a:nth-child(2):hover i { /* Facebook */
    color: #1877F2 !important;
}
.social-icons a:nth-child(3):hover i { /* YouTube */
    color: #FF0000 !important;
}


/* LANGUAGE SELECTOR – TOP BAR'A UYUMLU GÜNCELLEME */
.language-selector {
    position: relative;
}

.language-selector select {
    padding: 6px 40px 6px 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 0.9rem;
    cursor: pointer;
    appearance: none;
    background-image: url('../img/flags/tr.png');
    background-repeat: no-repeat;
    background-size: 20px 14px;
    background-position: right 10px center;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

/* Placeholder rengi */
.language-selector select option {
    background-color: var(--primary);
    color: var(--white);
}

/* Hover efekti */
.language-selector select:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Açıldığında daha modern görünüm */
.language-selector select:focus {
    border-color: var(--accent);
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 212, 255, 0.2);
}


/* Bayrak boyutları ve pozisyonu */
.language-selector select option[value="tr"] {
    background-image: url('../img/flags/tr.png');
    background-repeat: no-repeat;
    background-position: left 8px center;
    background-size: 20px 14px;
    padding-left: 35px;
}

.language-selector select option[value="en"] {
    background-image: url('../img/flags/en.png');
    background-repeat: no-repeat;
    background-position: left 8px center;
    background-size: 20px 14px;
    padding-left: 35px;
}

.language-selector select option[value="ar"] {
    background-image: url('../img/flags/ar.png');
    background-repeat: no-repeat;
    background-position: left 8px center;
    background-size: 20px 14px;
    padding-left: 35px;
}

/* Mobilde daha büyük olsun */
@media (max-width: 768px) {
    .language-selector select {
        padding: 8px 40px 8px 15px;
        font-size: 1rem;
        background-size: 24px 17px;
        background-position: right 12px center;
    }
    
    .language-selector::after {
        right: 15px;
        font-size: 0.9rem;
    }
}

/* Açılan liste için özel stil */
.language-selector select option {
    padding: 10px 15px 10px 40px;
    margin: 2px 0;
    border-radius: 4px;
}

.language-selector select option:hover {
    background-color: rgba(255, 255, 255, 0.2);
}


/* Main Navigation - Improved for mobile */
.main-nav {
    padding: 10px 0;
}

.main-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    z-index: 1001;
}

.logo-circle {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
}

.logo-icon {
    font-size: 24px;
    color: var(--white);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-name {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

.logo-subtitle {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--gray-dark);
    letter-spacing: 0.5px;
}

/* Search Container for Desktop */
.search-container.desktop-search {
    position: relative;
    z-index: 1001;
    margin-left: 10px; /* Bu satırı ekleyin */
}

.search-toggle {
    background: none;
    border: none;
    font-size: 1.1rem;
    color: var(--dark);
    cursor: pointer;
    transition: var(--transition);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.search-toggle:hover {
    background-color: var(--bg-light);
    color: var(--primary);
}

.search-box {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: var(--white);
    padding: 10px;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
}

.search-box.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.search-box input {
    border: 1px solid var(--gray-light);
    border-radius: 4px;
    padding: 8px 12px;
    font-size: 0.9rem;
    min-width: 220px;
    width: 100%;
}

.search-box input:focus {
    outline: none;
    border-color: var(--primary);
}

.search-btn {
    background-color: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 4px;
    padding: 8px 12px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
}

.search-btn:hover {
    background-color: var(--primary-light);
}

/* Custom Mobile Menu Toggle with animated hamburger */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    padding: 0;
    z-index: 1001;
    position: relative;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.menu-icon-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--dark);
    border-radius: 1px;
    transition: var(--transition);
    margin: 3px 0;
}

.menu-icon-line.line1 {
    transform-origin: left center;
}

.menu-icon-line.line2 {
    transform-origin: center center;
}

.menu-icon-line.line3 {
    transform-origin: left center;
}

/* Animated hamburger when active */
.mobile-menu-toggle.active .menu-icon-line.line1 {
    transform: rotate(45deg) translate(1px, -1px);
    width: 26px;
}

.mobile-menu-toggle.active .menu-icon-line.line2 {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-toggle.active .menu-icon-line.line3 {
    transform: rotate(-45deg) translate(1px, 1px);
    width: 26px;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
    margin-left: auto;
    margin-right: 25px;
}

.nav-menu li {
    position: relative;
    list-style: none;
}

.nav-menu a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 0;
    position: relative;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 5px;
    list-style: none;
}

.nav-menu a:hover, .nav-menu a.active {
    color: var(--primary);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary);
    border-radius: 2px;
}

/* Dropdown Menu - Fixed list styling */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: -50px; /* Soldan boşluk ekleyin, istediğiniz gibi ayarlayın */
    background-color: var(--white);
    min-width: 240px;
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
    list-style: none;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    width: 100%;
    list-style: none;
}

.dropdown-menu a {
    padding: 10px 20px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    list-style: none;
}

.dropdown-menu a:hover {
    background-color: var(--bg-light);
    color: var(--primary);
}

.dropdown-menu a i {
    width: 18px;
    text-align: center;
    color: var(--gray);
    font-size: 0.9rem;
}

.dropdown-menu a:hover i {
    color: var(--primary);
}

/* Mobile Search Item - Güncellendi */
.mobile-search-item {
    display: none;
    width: 100%;
    padding: 20px 0;
    border-top: 1px solid var(--gray-light);
    margin-top: 10px;
}

.mobile-extra-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

/* Mobil Arama */
.mobile-search-container {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.mobile-search-container input {
    flex: 1;
    border: 1px solid var(--gray-light);
    border-radius: 4px;
    padding: 12px 15px;
    font-size: 1rem;
    width: 100%;
}

.mobile-search-container input:focus {
    outline: none;
    border-color: var(--primary);
}

.mobile-search-btn {
    background-color: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 4px;
    padding: 12px 18px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-search-btn:hover {
    background-color: var(--primary-light);
}

/* Mobil Sosyal Medya İkonları */
.mobile-social-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 15px 0;
    border-top: 1px solid var(--gray-light);
    border-bottom: 1px solid var(--gray-light);
    width: 100%; /* Tam genişlikte olmasını sağla */
    margin: 0 auto; /* Ortalamayı sağla */
}

/* Güncellenmiş .mobile-social-icons a stili */
.mobile-social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background-color: var(--bg-light);
    color: var(--primary);
    border-radius: 50%;
    transition: var(--transition);
    font-size: 1.1rem;
    text-decoration: none;
    flex-shrink: 0;
    position: relative; /* Bu satırı ekleyin */
}

/* İkonları tam olarak ortalamak için ek düzenleme */
.mobile-social-icons a i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: relative;
    top: 0;
    left: 0;
}

/* Font Awesome ikonları için ek ayar */
.mobile-social-icons a i.fas,
.mobile-social-icons a i.fab {
    line-height: 1; /* Bu satır çok önemli */
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-social-icons a:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.mobile-social-icons a:nth-child(1):hover { /* Instagram */
    background-color: #E4405F;
    color: white;
}
.mobile-social-icons a:nth-child(2):hover { /* Facebook */
    background-color: #1877F2;
    color: white;
}
.mobile-social-icons a:nth-child(3):hover { /* YouTube */
    background-color: #FF0000;
    color: white;
}

/* Mobil Dil Seçici */
.mobile-language-selector {
    padding-top: 15px;
    border-top: 1px solid var(--gray-light);
        width: 100%; /* Tam genişlikte olmasını sağla */
    max-width: 280px; /* Maksimum genişliği sınırla */
    margin: 0 auto; /* Ortala */
}

.mobile-language-selector select {
    width: 100%;
    padding: 12px 45px 12px 15px;
    border: 1px solid var(--gray-light);
    border-radius: 6px;
    background-color: var(--bg-light);
    color: var(--dark);
    font-size: 1rem;
    cursor: pointer;
    appearance: none;
    background-image: url('../img/flags/tr.png');
    background-repeat: no-repeat;
    background-size: 24px 17px;
    background-position: right 15px center;
    transition: var(--transition);
    min-width: 0; /* Önemli: minimum genişliği sıfırla */
    max-width: 100%; /* Maksimum genişliği sınırla */
}

.mobile-language-selector select:hover {
    border-color: var(--primary);
    background-color: var(--white);
}

.mobile-language-selector select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26, 90, 185, 0.1);
}


.mobile-language-selector select option[value="tr"] {
    background-image: url('../img/flags/tr.png');
    background-repeat: no-repeat;
    background-position: left 10px center;
    background-size: 20px 14px;
    padding-left: 40px;
}

.mobile-language-selector select option[value="en"] {
    background-image: url('../img/flags/en.png');
    background-repeat: no-repeat;
    background-position: left 10px center;
    background-size: 20px 14px;
    padding-left: 40px;
}

.mobile-language-selector select option[value="ar"] {
    background-image: url('../img/flags/ar.png');
    background-repeat: no-repeat;
    background-position: left 10px center;
    background-size: 20px 14px;
    padding-left: 40px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .mobile-search-item {
        display: block;
    }
    
    /* Mobil menü için ek animasyon */
    .nav-menu.active .mobile-search-item {
        opacity: 1;
        transform: translateX(0);
        transition-delay: 0.4s;
    }

    .mobile-extra-content {
        display: flex;
        flex-direction: column;
        align-items: center; /* İçeriği ortala */
        gap: 20px;
        width: 100%;
        padding: 0 10px; /* Yanlardan biraz boşluk */
    }
}

/* Hero Section - Fixed margin issue */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    max-height: 900px;
    padding-top: 108px; /* Header yüksekliği kadar padding ekle */
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Header'ı hero'nun üstüne getir */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

/* Scroll yapıldığında header'ı sabitle */
.header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
}

.header.hidden {
    transform: translateY(-100%);
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

#heroVideo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-content {
    width: 100%;
    color: var(--white);
    z-index: 1;
    padding: 0 20px;
    margin-top: 60px; /* Header'ın altına yerleşmesi için */
}

.hero-text {
    max-width: 100%;
    margin-bottom: 40px;
}

.hero-subtitle {
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 15px;
    position: relative;
    padding-left: 15px;
}

.hero-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 2px;
    background-color: var(--accent);
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-title .highlight {
    color: var(--accent);
    position: relative;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(0, 212, 255, 0.2);
    z-index: -1;
}

.hero-description {
    font-size: 1.1rem;
    max-width: 600px;
    margin-bottom: 30px;
    opacity: 0.95;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    min-height: 48px;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--dark);
}

.btn-primary:hover {
    background-color: transparent;
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* Mouse Scroll Indicator (replaced line with mouse) */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--white);
    opacity: 0.8;
    animation: bounce 2s infinite;
}

.scroll-text {
    font-size: 0.85rem;
    margin-bottom: 8px;
    letter-spacing: 1.5px;
    font-weight: 500;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--white);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background-color: var(--white);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-5px);
    }
    60% {
        transform: translateX(-50%) translateY(-2px);
    }
}

/* Main Content - Full width */
.main-content {
    padding: 80px 20px;
    width: 100%;
    max-width: 100%;
}

.intro-section {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.intro-section h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.intro-section p {
    font-size: 1.05rem;
    color: var(--gray-dark);
    line-height: 1.7;
    max-width: 100%;
}


/* Responsive Styles */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .nav-menu {
        gap: 20px;
        margin-right: 20px;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .nav-menu {
        gap: 15px;
        margin-right: 15px;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .search-container.desktop-search {
        display: none;
    }
}

@media (max-width: 768px) {
    /* Mobile Header */
    .top-info-bar {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
        margin-left: auto;
        order: 3;
    }
    
    .search-container.desktop-search {
        display: none;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        padding: 100px 20px 30px;
        box-shadow: none;
        opacity: 0;
        visibility: hidden;
        transform: translateX(-100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                    opacity 0.3s ease,
                    visibility 0.3s ease;
        z-index: 999;
        margin: 0;
        overflow-y: auto;
        justify-content: flex-start;
    }
    
    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }
    
    .nav-menu li {
        width: 100%;
        opacity: 0;
        transform: translateX(-20px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }
    
    .nav-menu.active li {
        opacity: 1;
        transform: translateX(0);
    }
    
    /* Staggered animation for menu items */
    .nav-menu.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu.active li:nth-child(2) { transition-delay: 0.15s; }
    .nav-menu.active li:nth-child(3) { transition-delay: 0.2s; }
    .nav-menu.active li:nth-child(4) { transition-delay: 0.25s; }
    .nav-menu.active li:nth-child(5) { transition-delay: 0.3s; }
    
    .nav-menu a {
        padding: 15px 0;
        border-bottom: 1px solid var(--gray-light);
        font-size: 1.1rem;
        justify-content: space-between;
        font-weight: 600;
    }
    
    .nav-menu a.active::after {
        display: none;
    }
    
    .nav-menu a.active {
        color: var(--primary);
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0 0 0 10px;
        background-color: transparent;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        margin-top: 0;
    }
    
    .dropdown-menu.active {
        max-height: 500px;
        margin-top: 10px;
        margin-bottom: 10px;
    }
    
    .dropdown-menu a {
        padding: 10px 0;
        border-bottom: none;
        font-size: 1rem;
        font-weight: 500;
    }
    
    /* Mobile Search Item */
    .mobile-search-item {
        display: block;
        opacity: 0;
        transform: translateX(-20px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }
    
    .nav-menu.active .mobile-search-item {
        opacity: 1;
        transform: translateX(0);
        transition-delay: 0.35s;
    }
    
    /* Hero Section Adjustments */
    .hero {
        margin-top: 0;
        min-height: 750px;
        height: 100vh;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }
    
    /* Logo adjustments for mobile */
    .logo-circle {
        width: 40px;
        height: 40px;
    }
    
    .logo-name {
        font-size: 1.2rem;
    }
    
    .logo-subtitle {
        font-size: 0.65rem;
    }
    
    /* Header positioning for mobile */
    .header {
        position: fixed;
        background-color: rgba(255, 255, 255, 0.98);
        box-shadow: var(--shadow);
    }
    
    .hero-content {
        margin-top: 80px;
    }
}

@media (max-width: 576px) {
    .hero {
        height: 100vh;
        min-height: 700px;
        margin-top: 50px;
    }
    
    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
        letter-spacing: 1px;
        padding-left: 12px;
    }
    
    .hero-subtitle::before {
        width: 6px;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .intro-section h2 {
        font-size: 1.8rem;
    }
    
    .intro-section p {
        font-size: 0.95rem;
    }
    
    .main-nav .container {
        padding: 0 15px;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .main-content {
        padding: 60px 15px;
    }
    
    
    /* Scroll indicator smaller on mobile */
    .mouse {
        width: 22px;
        height: 34px;
    }
    
    .scroll-text {
        font-size: 0.8rem;
    }
    
    .nav-menu {
        padding: 100px 15px 30px;
    }
}

@media (max-width: 400px) {

        .hero {
        height: 85vh;
        min-height: 900px;
        margin-top: 15px;
    }

    .hero-title {
        font-size: 1.4rem;
    }
    
    .hero-description {
        font-size: 0.85rem;
    }
    
    .btn {
        padding: 12px 16px;
        font-size: 0.9rem;
    }
    
    .logo-name {
        font-size: 1.1rem;
    }
    
    .logo-subtitle {
        font-size: 0.5rem;
    }
}







/* About Section - Modern Design */
.about-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f0f7ff 100%);
    position: relative;
    overflow: hidden;
}

.about-section .container {
    position: relative;
    z-index: 2;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content {
    padding-right: 40px;
}

.section-subtitle {
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 20px;
    padding: 8px 16px;
    background: rgba(26, 90, 185, 0.1);
    border-radius: 30px;
    border: 1px solid rgba(26, 90, 185, 0.2);
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
    color: var(--dark);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
}

.section-title span {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.section-title span::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(26, 90, 185, 0.15);
    z-index: -1;
    border-radius: 4px;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-dark);
    margin-bottom: 30px;
    position: relative;
}

.about-text:last-of-type {
    margin-bottom: 40px;
}

/* Achievements - Önceki Sayı Animasyonlu Hali */
.achievements {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    justify-content: space-between;
}

.achievement-item {
    text-align: center;
    flex: 1;
    position: relative;
}

.achievement-item::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--primary-light), transparent);
}

.achievement-item:last-child::after {
    display: none;
}

.achievement-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.achievement-number::after {
    content: '+';
    font-size: 2rem;
    color: var(--accent);
    position: absolute;
    top: -10px;
    right: -20px;
    font-weight: 700;
}

.achievement-text {
    font-size: 0.95rem;
    color: var(--gray-dark);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive for achievements */
@media (max-width: 768px) {
    .achievements {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
    
    .achievement-item::after {
        display: none;
    }
    
    .achievement-item {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 576px) {
    .achievement-number {
        font-size: 2.8rem;
    }
}

/* Image Gallery - Modern Design */
.about-image-gallery {
    position: relative;
    height: 500px;
    width: 100%;
    perspective: 1000px;
}

.gallery-container {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

/* Main Image - Öne Çıkan */
.main-image-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 380px;
    height: 380px;
    z-index: 3;
    animation: floatMain 6s ease-in-out infinite;
}

.main-image-box {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    border: 12px solid var(--white);
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-image-box:hover {
    transform: rotate(2deg) scale(1.03);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.25);
}

.main-image-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(26, 90, 185, 0.1) 0%,
        rgba(0, 212, 255, 0.1) 100%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.main-image-box:hover::before {
    opacity: 1;
}

.main-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.main-image-box:hover img {
    transform: scale(1.1);
}

/* Floating Cards */
.floating-card {
    position: absolute;
    width: 200px;
    height: 150px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border: 6px solid var(--white);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
    cursor: pointer;
}

.floating-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.floating-card:hover {
    transform: translateY(-10px) scale(1.05);
    z-index: 4;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.floating-card:hover img {
    transform: scale(1.1);
}

/* Card Positions */
.card-1 {
    top: 10%;
    left: 5%;
    animation: floatCard1 8s ease-in-out infinite;
}

.card-2 {
    top: 60%;
    left: 2%;
    animation: floatCard2 7s ease-in-out infinite 0.5s;
}

.card-3 {
    top: 15%;
    right: 5%;
    animation: floatCard3 9s ease-in-out infinite 0.8s;
}

.card-4 {
    top: 65%;
    right: 2%;
    animation: floatCard4 8s ease-in-out infinite 0.3s;
}

/* Animations */
@keyframes floatMain {
    0%, 100% { transform: translate(-50%, -50%); }
    50% { transform: translate(-50%, -53%); }
}

@keyframes floatCard1 {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-20px) rotate(-8deg); }
}

@keyframes floatCard2 {
    0%, 100% { transform: translateY(0) rotate(3deg); }
    50% { transform: translateY(15px) rotate(5deg); }
}

@keyframes floatCard3 {
    0%, 100% { transform: translateY(0) rotate(5deg); }
    50% { transform: translateY(-15px) rotate(8deg); }
}

@keyframes floatCard4 {
    0%, 100% { transform: translateY(0) rotate(-3deg); }
    50% { transform: translateY(10px) rotate(-5deg); }
}

/* Background Elements */
.tech-background {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 0.1;
    pointer-events: none;
}

.circuit-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    height: 2px;
    width: 100%;
    top: 30%;
    left: -100%;
    animation: circuitFlow 15s linear infinite;
}

.circuit-node {
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: var(--accent);
    border-radius: 75%;
    box-shadow: 0 0 10px var(--accent);
}

.node-1 { top: 20%; left: 15%; animation: pulse 2s infinite; }
.node-2 { top: 40%; left: 80%; animation: pulse 2s infinite 0.5s; }
.node-3 { top: 70%; left: 30%; animation: pulse 2s infinite 1s; }
.node-4 { top: 85%; left: 70%; animation: pulse 2s infinite 1.5s; }

@keyframes circuitFlow {
    0% { left: -100%; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { left: 100%; opacity: 0; }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.3); opacity: 1; }
}

/* Responsive About Section */
@media (max-width: 1200px) {
    .about-grid {
        gap: 60px;
    }
    
    .main-image-container {
        width: 340px;
        height: 340px;
    }
    
    .floating-card {
        width: 180px;
        height: 135px;
    }
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .about-content {
        padding-right: 0;
        text-align: center;
    }
    
    .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .about-image-gallery {
        height: 400px;
        margin-top: 40px;
    }
    
    .main-image-container {
        width: 300px;
        height: 300px;
    }
    
    .floating-card {
        width: 160px;
        height: 120px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .achievements {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
    
    .achievement-item {
        width: 100%;
        max-width: 250px;
    }
    
    .about-image-gallery {
        height: 350px;
    }
    
    .main-image-container {
        width: 250px;
        height: 250px;
    }
    
    .floating-card {
        width: 130px;
        height: 100px;
        border-width: 4px;
    }
}

@media (max-width: 576px) {
    .about-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .about-text {
        font-size: 1rem;
    }
    
    .achievement-number {
        font-size: 2.8rem;
    }
    
    .about-image-gallery {
        height: 280px;
    }
    
    .main-image-container {
        width: 200px;
        height: 200px;
    }
    
    .floating-card {
        width: 100px;
        height: 75px;
    }
    
    .tech-background {
        display: none;
    }
}



/* Hizmetler Bölümü - Modern Kapı Efektli */
.services-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f9fbfd 100%);
    position: relative;
    overflow: hidden;
}

.services-section .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Başlık Bölümü - Düzeltildi */
.services-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.services-header .section-subtitle {
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 15px;
    padding: 8px 20px;
    background: rgba(26, 90, 185, 0.1);
    border-radius: 30px;
    border: 1px solid rgba(26, 90, 185, 0.2);
    position: relative;
    z-index: 2;
}

.services-header .section-title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--dark);
    position: relative;
    display: block;
    padding: 0 20px;
}

.services-header .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
}

.services-header .section-description {
    font-size: 1.1rem;
    color: var(--gray-dark);
    max-width: 1000px;
    margin: 30px auto 0;
    line-height: 1.7;
    padding: 0 20px;
}

/* Servis Kartları Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    perspective: 1000px;
    max-width: 1500px;
    margin: 0 auto;
}

/* Kapı Efektli Servis Kartı - YÜKSEKLİK DÜZELTİLDİ */
.service-card {
    position: relative;
    height: 700px; /* Yükseklik artırıldı */
    border-radius: 20px;
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    transform-style: preserve-3d;
}

/* Kapı Katmanları */
.card-door {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 20px;
}

.card-door::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
}

.card-door.left-door {
    left: 0;
    transform-origin: left center;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.card-door.right-door {
    right: 0;
    transform-origin: right center;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

/* Kapı İçeriği (İkon ve Başlık) - DÜZELTİLDİ */
.door-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 20px;
    color: var(--white);
    transition: transform 0.5s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.door-icon {
    font-size: 4rem; /* Büyütüldü */
    margin-bottom: 25px;
    color: var(--white);
    transition: all 0.5s ease;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.2));
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.door-title {
    font-size: 1.6rem; /* Büyütüldü */
    font-weight: 700;
    margin-bottom: 12px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    line-height: 1.3;
    text-align: center;
    width: 100%;
}

.door-subtitle {
    font-size: 1rem; /* Büyütüldü */
    opacity: 0.9;
    font-weight: 500;
    text-align: center;
    width: 100%;
}

/* Kart Arka Planı (İçerik) - YÜKSEKLİK DÜZELTİLDİ */
.card-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    z-index: 1;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transform: translateZ(-20px);
    transition: opacity 0.3s ease 0.4s;
    overflow-y: auto; /* İçerik taşarsa kaydırma */
}

/* İçerik - DÜZELTİLDİ */
.service-content {
    text-align: center;
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-icon {
    font-size: 3rem; /* Büyütüldü */
    color: var(--primary);
    margin-bottom: 25px;
    transition: transform 0.5s ease;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-title {
    font-size: 1.8rem; /* Büyütüldü */
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.3;
}

.service-description {
    font-size: 1rem; /* Büyütüldü */
    color: var(--gray-dark);
    line-height: 1.7;
    margin-bottom: 25px;
    flex-grow: 1;
}

.service-features {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
    padding: 0 10px;
}

.service-features li {
    padding: 10px 0;
    color: var(--gray-dark);
    font-size: 0.95rem; /* Büyütüldü */
    position: relative;
    padding-left: 30px;
    line-height: 1.4;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 10px;
    color: var(--accent);
    font-weight: bold;
    font-size: 1.1rem;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem; /* Büyütüldü */
    transition: all 0.3s ease;
    border: 2px solid transparent;
    margin-top: auto;
    min-height: 48px;
}

.service-btn:hover {
    background-color: transparent;
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Hover Efektleri */
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-card:hover .card-door.left-door {
    transform: rotateY(-110deg);
}

.service-card:hover .card-door.right-door {
    transform: rotateY(110deg);
}

.service-card:hover .door-icon {
    transform: scale(1.2) rotate(10deg);
    color: var(--accent);
}

.service-card:hover .card-background {
    opacity: 1;
}

/* Kapılar Kapalıyken İçerik Gizli */
.card-background {
    pointer-events: none;
}

.service-card:hover .card-background {
    pointer-events: all;
}

/* Scrollbar stillendirme */
.card-background::-webkit-scrollbar {
    width: 6px;
}

.card-background::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}

.card-background::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

/* Mobil Uyumluluk */
@media (max-width: 1200px) {
    .services-grid {
        gap: 25px;
    }
    
    .service-card {
        height: 480px; /* Mobil için yükseklik ayarı */
    }
    
    .door-title {
        font-size: 1.4rem;
    }
    
    .service-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        max-width: 800px;
    }
    
    .services-header .section-title {
        font-size: 2.3rem;
    }
    
    .service-card {
        height: 550px;
    }
}

/* --- MOBİL DÜZELTME (768px ALTINDA) --- */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .service-card {
        height: auto !important;
        min-height: auto;
        max-height: none;
        overflow: visible;
    }

    /* Kapılar - mobil */
    .card-door {
        position: relative;
        width: 100%;
        height: 180px;
        transform: none !important;
        z-index: 2;
        border-radius: 15px 15px 0 0;
    }

    .card-door.left-door {
        border-right: none;
    }

    /* Sağ kapıyı mobilde gizle */
    .card-door.right-door {
        display: none !important;
    }

    /* İçerik - Mobilde tamamen görünür */
    .card-background {
        position: relative;
        opacity: 1 !important;
        transform: none !important;
        padding: 25px 20px 20px;
        min-height: auto;
        pointer-events: all !important;
        overflow: visible !important;
        z-index: 1;
        height: auto;
        border-radius: 0 0 15px 15px;
        margin-top: -5px; /* Kapı ile içerik arasında boşluk kapat */
    }

    /* Mobilde hover efektlerini kaldır */
    .service-card:hover {
        transform: none !important;
        box-shadow: var(--shadow);
    }

    .service-card:hover .card-door.left-door {
        transform: none !important;
    }

    .door-content {
        height: 180px;
        padding: 15px;
    }

    .door-icon {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    .door-title {
        font-size: 1.3rem;
        margin-bottom: 8px;
    }

    .door-subtitle {
        font-size: 0.9rem;
    }

    /* İÇERİK KISMINDA BOŞLUKLARI DÜZELTME */
    .service-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        gap: 15px; /* Elemanlar arası boşluğu azalt */
    }

    .service-icon {
        font-size: 2.2rem;
        margin-bottom: 15px;
        min-height: 40px;
        display: none;
    }

    .service-title {
        font-size: 1.5rem;
        margin-bottom: 12px;
        line-height: 1.3;
    }

    .service-description {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 15px;
        flex-grow: 0; /* Büyümesini engelle */
    }

    /* Liste item'larını daha kompakt yap */
    .service-features {
        margin-bottom: 20px;
        padding: 0 5px;
    }

    .service-features li {
        padding: 8px 0 8px 25px;
        font-size: 0.9rem;
        line-height: 1.3;
        margin-bottom: 5px;
    }

    .service-features li::before {
        top: 8px;
        font-size: 0.9rem;
    }

    /* Buton */
    .service-btn {
        padding: 10px 20px;
        font-size: 0.95rem;
        min-height: 42px;
        margin-top: 5px;
    }

    /* Kartlar arası daha az boşluk */
    .services-grid {
        gap: 20px;
    }
}

/* --- ÇOK KÜÇÜK EKRANLAR (576px ALTINDA) --- */
@media (max-width: 576px) {
    .services-section {
        padding: 80px 0 60px;
    }
    
    .services-header {
        margin-bottom: 50px;
    }
    
    .services-header .section-title {
        font-size: 1.8rem;
    }
    
    .services-header .section-description {
        font-size: 0.95rem;
        margin-top: 15px;
        padding: 0 10px;
    }
    
    /* Kapı boyutunu küçült */
    .card-door {
        height: 160px;
    }
    
    .door-content {
        height: 160px;
        padding: 10px;
    }
    
    .door-icon {
        font-size: 2.2rem;
        margin-bottom: 12px;
    }
    
    .door-title {
        font-size: 1.2rem;
    }
    
    /* İçerik boyutunu küçült */
    .card-background {
        padding: 20px 15px 15px;
    }
    
    .service-icon {
        font-size: 2rem;
        margin-bottom: 12px;
    }
    
    .service-title {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    
    .service-description {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }
    
    .service-features li {
        padding: 6px 0 6px 22px;
        font-size: 0.85rem;
    }
    
    .service-btn {
        padding: 9px 18px;
        font-size: 0.9rem;
    }
}

/* --- ÇOK DAR EKRANLAR (400px ALTINDA) --- */
@media (max-width: 400px) {
    .card-door {
        height: 150px;
    }
    
    .door-content {
        height: 150px;
    }
    
    .door-icon {
        font-size: 2rem;
    }
    
    .door-title {
        font-size: 1.1rem;
    }
    
    .card-background {
        padding: 18px 12px 12px;
    }
    
    .service-title {
        font-size: 1.2rem;
    }
    
    .service-description {
        font-size: 0.85rem;
    }
    
    .service-features li {
        font-size: 0.8rem;
        padding: 5px 0 5px 20px;
    }
}

/* İkon boyutları için ek ayar */
.door-icon i {
    font-size: inherit; /* Font Awesome ikon boyutu ebeveyninden alır */
}

/* Ekran boyutlarına göre ikon boyutu */
@media (min-width: 1200px) {
    .door-icon {
        font-size: 4.5rem; /* Daha büyük ekranlarda daha büyük ikon */
    }
}








/* Ürünler Bölümü - Modern Kapı Efektli */
.products-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f0f7ff 100%);
    position: relative;
    overflow: hidden;
}

.products-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Başlık Bölümü */
.products-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
}

.products-header .section-subtitle {
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 15px;
    padding: 8px 20px;
    background: rgba(26, 90, 185, 0.1);
    border-radius: 30px;
    border: 1px solid rgba(26, 90, 185, 0.2);
}

.products-header .section-title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--dark);
    position: relative;
}

.products-header .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
}

.products-header .section-description {
    font-size: 1.1rem;
    color: var(--gray-dark);
    max-width: 800px;
    margin: 30px auto 0;
    line-height: 1.7;
}

/* Ürün Filtreleri */
.product-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    border: 2px solid var(--gray-light);
    background: var(--white);
    color: var(--gray-dark);
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Ürün Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

/* Ürün Kartı - Kapı Efektli */
.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    height: 550px;
    perspective: 1000px;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

/* Ürün Ön Yüzü (Kapı) */
.product-front {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--white) 0%, #f8fafc 100%);
    border-radius: 20px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    backface-visibility: hidden;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
    transform-style: preserve-3d;
}

/* Ürün Başlık Alanı */
.product-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.product-badges {
    display: flex;
    gap: 8px;
}

.badge {
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-new {
    background: linear-gradient(135deg, #00d4ff 0%, #1a5ab9 100%);
    color: white;
}

.badge-hot {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff3d3d 100%);
    color: white;
}

.badge-discount {
    background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
    color: white;
}

.product-brand {
    font-size: 0.9rem;
    color: var(--gray);
    font-weight: 500;
}

/* Ürün Görseli */
.product-image-container {
    width: 100%;
    height: 180px;
    border-radius: 12px;
    overflow: hidden;
    margin: 15px 0;
    position: relative;
    background: linear-gradient(135deg, #f8fafc 0%, #e5e7eb 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

/* Ürün Bilgileri */
.product-info {
    flex-grow: 1;
}

.product-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-excerpt {
    font-size: 0.9rem;
    color: var(--gray-dark);
    line-height: 1.5;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Fiyat Alanı */
.product-pricing {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid var(--gray-light);
}

.price {
    display: flex;
    flex-direction: column;
}

.original-price {
    font-size: 0.9rem;
    color: var(--gray);
    text-decoration: line-through;
    margin-bottom: 2px;
}

.current-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}


.discount-percent {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff3d3d 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

/* Detay Butonu */
.product-action {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
}

.detail-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--primary);
    color: var(--white);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.detail-btn:hover {
    background: transparent;
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.detail-btn i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.detail-btn:hover i {
    transform: translateX(5px);
}

/* Ürün Arka Yüzü (Detay) */
.product-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    border-radius: 20px;
    padding: 25px;
    transform: rotateY(180deg);
    backface-visibility: hidden;
    overflow-y: auto;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.product-card.active .product-front {
    transform: rotateY(180deg);
}

.product-card.active .product-back {
    transform: rotateY(0);
}

/* Detay İçeriği */
.product-details {
    height: 120%;
    display: flex;
    flex-direction: column;
}

.detail-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gray-light);
}

.detail-description {
    font-size: 0.95rem;
    color: var(--gray-dark);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.product-features {
    margin-bottom: 25px;
}

.product-features h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 10px;
}

.product-features ul {
    list-style: none;
    padding-left: 0;
}

.product-features li {
    padding: 8px 0;
    color: var(--gray-dark);
    font-size: 0.9rem;
    position: relative;
    padding-left: 25px;
}

.product-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 8px;
    color: var(--accent);
    font-weight: bold;
}

.detail-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
}


/* Ürün Detay Eylem Butonları Güncellendi */
.detail-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
    flex-wrap: wrap;
}

.close-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--gray-light);
    color: var(--dark);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    flex: 1;
    min-width: 120px;
}

.all-products-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    flex: 1;
    min-width: 120px;
}

.all-products-btn:hover {
    background: transparent;
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 90, 185, 0.2);
}

.close-btn:hover {
    background: transparent;
    border-color: var(--gray);
    transform: translateY(-2px);
}

/* Tüm Ürünleri Gör Butonu */
.products-all-btn-container {
    text-align: center;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid var(--gray-light);
}

.all-products-main-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 35px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 5px 20px rgba(26, 90, 185, 0.3);
    position: relative;
    overflow: hidden;
}

.all-products-main-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s ease;
}

.all-products-main-btn:hover::before {
    left: 100%;
}

.all-products-main-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(26, 90, 185, 0.4);
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
}

.all-products-main-btn i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.all-products-main-btn:hover i {
    transform: translateX(5px);
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .detail-actions {
        flex-direction: column;
    }
    
    .close-btn,
    .all-products-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
    }
    
    .all-products-main-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .products-all-btn-container {
        margin-top: 30px;
        padding-top: 30px;
    }
    
    .all-products-main-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 992px) {
    .products-section {
        padding: 80px 0;
    }
    
    .products-header .section-title {
        font-size: 2.3rem;
    }
    
    .products-grid {
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto 50px;
    }
    
    .product-card {
        height: 400px;
    }
    
    .product-filters {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .product-image-container {
        height: 150px;
    }
    
    .product-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .products-section {
        padding: 60px 0;
    }
    
    .products-header .section-title {
        font-size: 1.8rem;
    }
    
    .products-header .section-description {
        font-size: 1rem;
    }
    
    .product-card {
        height: 380px;
    }
    
    .detail-actions {
        flex-direction: column;
    }
    
    .close-btn,
    .buy-btn {
        width: 100%;
    }
}

/* Animasyonlar */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card[data-aos] {
    animation: slideInUp 0.6s ease forwards;
}


/* 360px ve altı için özel ayarlar */
@media (max-width: 360px) {
    /* Ürün Kartları */
    .products-grid {
        gap: 15px;
        padding: 0 10px;
    }
    
    .product-card {
        height: 340px;
        border-radius: 15px;
    }
    
    .product-front,
    .product-back {
        padding: 15px;
    }
    
    .product-header {
        margin-bottom: 10px;
    }
    
    .product-badges {
        flex-direction: column;
        gap: 4px;
    }
    
    .badge {
        padding: 3px 8px;
        font-size: 0.7rem;
    }
    
    .product-category-badge {
        top: 15px;
        right: 15px;
        padding: 4px 10px;
        font-size: 0.7rem;
    }
    
    .product-image-container {
        height: 120px;
        margin: 10px 0;
    }
    
    .product-title {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .product-excerpt {
        font-size: 0.8rem;
        margin-bottom: 10px;
    }
    
    .current-price {
        font-size: 1.2rem;
    }
    
    .detail-btn {
        padding: 8px 15px;
        font-size: 0.85rem;
    }
    
    /* Ürün detay back yüzü */
    .detail-title {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .detail-description {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }
    
    .product-features h4 {
        font-size: 1rem;
    }
    
    .product-features li {
        font-size: 0.8rem;
        padding: 6px 0 6px 20px;
    }
    
    .detail-actions {
        flex-direction: column;
        gap: 8px;
    }
    
    .close-btn,
    .buy-btn {
        padding: 8px 15px;
        font-size: 0.85rem;
        width: 100%;
    }
    
    /* Servis Kartları - 360px altı */
    .service-card {
        border-radius: 15px;
    }
    
    .card-door {
        height: 140px;
        border-radius: 15px 15px 0 0;
    }
    
    .door-content {
        height: 140px;
        padding: 10px;
    }
    
    .door-icon {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    .door-title {
        font-size: 1.1rem;
        margin-bottom: 6px;
    }
    
    .door-subtitle {
        font-size: 0.85rem;
    }
    
    .card-background {
        padding: 15px 12px 12px;
    }
    
    .service-title {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .service-description {
        font-size: 0.85rem;
        margin-bottom: 12px;
    }
    
    .service-features {
        margin-bottom: 15px;
    }
    
    .service-features li {
        padding: 6px 0 6px 22px;
        font-size: 0.85rem;
    }
    
    .service-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
        min-height: 40px;
    }
    
    /* About Bölümü */
    .section-title {
        font-size: 1.6rem;
    }
    
    .achievement-number {
        font-size: 2.2rem;
    }
    
    .achievement-text {
        font-size: 0.8rem;
    }
}

/* 320px ve altı için ek ayarlar */
@media (max-width: 320px) {
    .product-card {
        height: 350px;
    }
    
    .product-image-container {
        height: 110px;
    }
    
    .card-door {
        height: 130px;
    }
    
    .door-content {
        height: 130px;
    }
    
    .door-icon {
        font-size: 1.6rem;
    }
    
    .door-title {
        font-size: 1rem;
    }
    
    .service-title {
        font-size: 1.1rem;
    }
}






/* Blog Bölümü - Modern ve Mobil Uyumlu */
.blog-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.blog-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Blog Başlık Bölümü */
.blog-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
}

.blog-header .section-subtitle {
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 15px;
    padding: 8px 20px;
    background: rgba(26, 90, 185, 0.1);
    border-radius: 30px;
    border: 1px solid rgba(26, 90, 185, 0.2);
}

.blog-header .section-title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--dark);
    position: relative;
}

.blog-header .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
}

.blog-header .section-description {
    font-size: 1.1rem;
    color: var(--gray-dark);
    max-width: 800px;
    margin: 30px auto 0;
    line-height: 1.7;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    perspective: 1000px;
}

/* Blog Kartı - Flip Animasyonlu */
.blog-card {
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.blog-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.blog-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.blog-card.flipped .blog-card-inner {
    transform: rotateY(180deg);
}

/* Blog Kartı Ön Yüzü */
.blog-card-front,
.blog-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    overflow: hidden;
    background: var(--white);
}

/* Blog Kartı Ön Yüzü */
.blog-card-front {
    display: flex;
    flex-direction: column;
}

/* Blog Resim Konteyneri */
.blog-image-container {
    position: relative;
    height: 200px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.blog-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image {
    transform: scale(1.05);
}

/* Blog Tarih Etiketi */
.blog-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary);
    color: var(--white);
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    min-width: 60px;
    box-shadow: 0 4px 12px rgba(26, 90, 185, 0.3);
    z-index: 2;
}

.blog-day {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
}

.blog-month {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    opacity: 0.9;
    margin-top: 2px;
}

/* Blog Kategori Etiketi */
.blog-category {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent);
    color: var(--dark);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.3);
    z-index: 2;
}

/* Blog İçerik */
.blog-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.blog-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 56px;
}

.blog-excerpt {
    font-size: 0.95rem;
    color: var(--gray-dark);
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

/* Blog Meta Bilgileri */
.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--gray-light);
    margin-top: auto;
}

.blog-author,
.blog-read-time {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--gray);
}

.blog-author i,
.blog-read-time i {
    font-size: 0.9rem;
    color: var(--primary);
}

/* Blog Butonu */
.blog-action {
    padding: 0 25px 25px;
}

.blog-read-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.blog-read-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(26, 90, 185, 0.3);
}

.blog-read-btn i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.blog-read-btn:hover i {
    transform: translateX(5px);
}

/* Blog Kartı Arka Yüzü */
.blog-card-back {
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    padding: 25px;
    overflow-y: auto;
}

/* Blog Detayları */
.blog-details {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-detail-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--gray-light);
}

.blog-detail-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.85rem;
    color: var(--gray);
}

.blog-detail-meta i {
    color: var(--primary);
    font-size: 0.9rem;
}

/* Blog Tam İçerik */
.blog-full-content {
    flex-grow: 1;
    margin-bottom: 20px;
    overflow-y: auto;
}

.blog-full-content p {
    font-size: 0.95rem;
    color: var(--gray-dark);
    line-height: 1.6;
    margin-bottom: 15px;
}

.blog-full-content ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.blog-full-content li {
    font-size: 0.95rem;
    color: var(--gray-dark);
    line-height: 1.5;
    margin-bottom: 8px;
    position: relative;
    padding-left: 10px;
}

.blog-full-content li::before {
    content: '•';
    color: var(--primary);
    position: absolute;
    left: -10px;
}

/* Blog Etiketleri */
.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
    padding-top: 15px;
    border-top: 1px solid var(--gray-light);
}

.blog-tag {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(26, 90, 185, 0.1);
    color: var(--primary);
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.blog-tag:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

/* Blog Detay Butonları */
.blog-detail-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.blog-back-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--gray-light);
    color: var(--dark);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
}

.blog-back-btn:hover {
    background: var(--gray);
    color: var(--white);
    transform: translateY(-2px);
}

.blog-share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    color: var(--white);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    flex: 1;
}

.blog-share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(26, 90, 185, 0.3);
}

/* Tüm Yazıları Gör Butonu */
.blog-footer {
    text-align: center;
    margin-top: 40px;
}

.blog-all-posts-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-all-posts-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.blog-all-posts-btn i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.blog-all-posts-btn:hover i {
    transform: translateX(5px);
}

/* Scrollbar Stillendirme */
.blog-card-back::-webkit-scrollbar {
    width: 6px;
}

.blog-card-back::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}

.blog-card-back::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

/* Responsive Tasarım */
@media (max-width: 1200px) {
    .blog-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 992px) {
    .blog-section {
        padding: 80px 0;
    }
    
    .blog-header .section-title {
        font-size: 2.3rem;
    }
    
    .blog-grid {
        gap: 25px;
    }
    
    .blog-card {
        height: 450px;
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto 50px;
    }
    
    .blog-card {
        height: 400px;
    }
    
    .blog-image-container {
        height: 250px;
    }
    
    .blog-content {
        padding: 20px;
    }
    
    .blog-title {
        font-size: 1.2rem;
        min-height: 48px;
    }
    
    .blog-action {
        padding: 0 20px 20px;
    }
}

@media (max-width: 576px) {
    /* Blog kartının genel yüksekliğini, içeriğin sığması için düşürün */
    .blog-card {
        height: 450px; 
    }

    /* Blog resminin bulunduğu konteynerin yüksekliğini ayarla */
    .blog-image-container {
        height: 250px; 
    }

    /* Tarih etiketinin konumunu ve boyutunu mobilize göre ayarla */
    .blog-date {
        top: 15px; /* Üstten biraz boşluk */
        left: 15px; /* Soldan biraz boşluk */
        padding: 8px; /* Daha kompakt hale getir */
    }

    /* Tarih gün ve ay yazı boyutlarını küçült */
    .blog-day {
        font-size: 1.3rem; 
    }

    .blog-month {
        font-size: 0.75rem;
    }
    
    /* Başlık ve özet metinlerini daha küçük ekranlara optimize et */
    .blog-title {
        font-size: 1.1rem;
        line-height: 1.3;
        min-height: 48px; /* Başlığın iki satıra yayılması için yeterli alan bırakır */
    }

    .blog-excerpt {
        font-size: 0.9rem;
    }
}

/* 360px ve altı için özel ayarlar */
@media (max-width: 360px) {
    .blog-grid {
        gap: 15px;
        padding: 0 10px;
    }
    
    .blog-card {
        height: 450px;
        border-radius: 15px;
    }
    
    .blog-card-front,
    .blog-card-back {
        border-radius: 15px;
    }
    
    .blog-image-container {
        height: 250px;
        border-radius: 15px 15px 0 0;
    }
    
    .blog-content {
        padding: 15px;
    }
    
    .blog-title {
        font-size: 1rem;
        min-height: 40px;
        margin-bottom: 10px;
    }
    
    .blog-excerpt {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }
    
    .blog-meta {
        padding-top: 10px;
        font-size: 0.8rem;
    }
    
    .blog-action {
        padding: 0 15px 15px;
    }
    
    .blog-read-btn {
        padding: 10px;
        font-size: 0.9rem;
    }
    
    .blog-date {
        top: 10px;
        left: 10px;
        padding: 8px;
        min-width: 50px;
    }
    
    .blog-day {
        font-size: 1.2rem;
    }
    
    .blog-month {
        font-size: 0.7rem;
    }
    
    .blog-category {
        top: 10px;
        right: 10px;
        padding: 4px 12px;
        font-size: 0.7rem;
    }
    
    .blog-card-back {
        padding: 15px;
    }
    
    .blog-detail-title {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .blog-detail-meta {
        gap: 10px;
        margin-bottom: 15px;
        padding-bottom: 10px;
        font-size: 0.8rem;
    }
    
    .blog-full-content p,
    .blog-full-content li {
        font-size: 0.85rem;
    }
    
    .blog-tags {
        gap: 6px;
    }
    
    .blog-tag {
        padding: 5px 10px;
        font-size: 0.75rem;
    }
    
    .blog-back-btn,
    .blog-share-btn {
        padding: 10px 15px;
        font-size: 0.85rem;
    }
    
    .blog-all-posts-btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}

/* 320px ve altı için ek ayarlar */
@media (max-width: 320px) {
    .blog-card {
        height: 320px;
    }
    
    .blog-image-container {
        height: 130px;
    }
    
    .blog-title {
        font-size: 0.95rem;
        min-height: 38px;
    }
    
    .blog-excerpt {
        font-size: 0.8rem;
    }
}





/* SSS (Sıkça Sorulan Sorular) Bölümü - Modern ve Animasyonlu */
.faq-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f0f7ff 100%);
    position: relative;
    overflow: hidden;
}

.faq-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Başlık Bölümü */
.faq-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
}

.faq-header .section-subtitle {
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 15px;
    padding: 8px 20px;
    background: rgba(26, 90, 185, 0.1);
    border-radius: 30px;
    border: 1px solid rgba(26, 90, 185, 0.2);
}

.faq-header .section-title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--dark);
    position: relative;
}

.faq-header .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
}

.faq-header .section-description {
    font-size: 1.1rem;
    color: var(--gray-dark);
    max-width: 800px;
    margin: 30px auto 0;
    line-height: 1.7;
}

/* SSS Grid */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

/* SSS Kartı */
.faq-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.faq-card:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.faq-card.active {
    box-shadow: 0 20px 40px rgba(26, 90, 185, 0.2);
    border-color: rgba(26, 90, 185, 0.2);
}

/* SSS Sorusu */
.faq-question {
    padding: 25px 80px 25px 30px;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    min-height: 85px;
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
    line-height: 1.5;
    transition: color 0.3s ease;
    flex: 1;
}

.faq-card.active .faq-question h3 {
    color: var(--primary);
}

.faq-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    border-radius: 50%;
    font-weight: 800;
    font-size: 1.1rem;
    margin-right: 20px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(26, 90, 185, 0.3);
    transition: all 0.3s ease;
}

.faq-card.active .faq-number {
    transform: rotate(360deg);
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
}

.faq-toggle {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(26, 90, 185, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.faq-toggle:hover {
    background: rgba(26, 90, 185, 0.2);
}

.faq-toggle i {
    font-size: 1rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.faq-card.active .faq-toggle {
    background: rgba(26, 90, 185, 0.15);
    transform: translateY(-50%) rotate(180deg);
}

/* SSS Cevabı */
.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(-10px);
}

.faq-card.active .faq-answer {
    padding: 0 30px 30px;
    max-height: 1000px;
    opacity: 1;
    transform: translateY(0);
}

.faq-answer-content {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--gray-dark);
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.faq-answer-content p {
    margin-bottom: 15px;
}

.faq-answer-content p:last-child {
    margin-bottom: 0;
}

/* SSS İkonları (isteğe bağlı) */
.faq-icon {
    position: absolute;
    opacity: 0.05;
    z-index: 0;
    font-size: 8rem;
    color: var(--primary);
}

.faq-icon.question {
    top: -20px;
    left: -20px;
}

.faq-icon.answer {
    bottom: -20px;
    right: -20px;
    transform: rotate(180deg);
}

/* SSS Arama */
.faq-search-container {
    max-width: 600px;
    margin: 0 auto 50px;
    position: relative;
}

.faq-search {
    width: 100%;
    padding: 18px 25px 18px 50px;
    border: 2px solid var(--gray-light);
    border-radius: 15px;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    background: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-search:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 10px 25px rgba(26, 90, 185, 0.15);
}

.faq-search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
    font-size: 1.1rem;
}

/* SSS Kategorileri */
.faq-categories {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.faq-category-btn {
    padding: 10px 24px;
    border: 2px solid var(--gray-light);
    background: var(--white);
    color: var(--gray-dark);
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.faq-category-btn.active,
.faq-category-btn:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* SSS İstatistikleri */
.faq-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.faq-stat-item {
    text-align: center;
    min-width: 150px;
}

.faq-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 10px;
    display: block;
}

.faq-stat-text {
    font-size: 0.9rem;
    color: var(--gray-dark);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* SSS CTA (Call to Action) */
.faq-cta {
    text-align: center;
    margin-top: 70px;
    padding: 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 20px;
    color: var(--white);
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(26, 90, 185, 0.3);
}

.faq-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="20" height="20" fill="none"/><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.faq-cta-content {
    position: relative;
    z-index: 2;
}

.faq-cta h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--white);
}

.faq-cta p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 25px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.faq-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    background: var(--white);
    color: var(--primary);
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.faq-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    background: var(--bg-light);
}

.faq-cta-btn i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.faq-cta-btn:hover i {
    transform: translateX(5px);
}

/* Responsive Tasarım */
@media (max-width: 992px) {
    .faq-section {
        padding: 80px 0;
    }
    
    .faq-header .section-title {
        font-size: 2.3rem;
    }
    
    .faq-question {
        padding: 20px 70px 20px 25px;
    }
    
    .faq-cta {
        padding: 30px 20px;
    }
    
    .faq-cta h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .faq-grid {
        gap: 15px;
    }
    
    .faq-question {
        padding: 18px 60px 18px 20px;
        min-height: 75px;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
    
    .faq-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        margin-right: 15px;
    }
    
    .faq-toggle {
        right: 20px;
        width: 35px;
        height: 35px;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-card.active .faq-answer {
        padding: 0 20px 20px;
    }
    
    .faq-answer-content {
        font-size: 1rem;
    }
    
    .faq-categories {
        gap: 10px;
    }
    
    .faq-category-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .faq-stats {
        gap: 30px;
    }
    
    .faq-stat-item {
        min-width: 120px;
    }
    
    .faq-stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-header .section-title {
        font-size: 1.8rem;
    }
    
    .faq-header .section-description {
        font-size: 1rem;
    }
    
    .faq-search {
        padding: 15px 20px 15px 45px;
        font-size: 1rem;
    }
    
    .faq-cta h3 {
        font-size: 1.6rem;
    }
    
    .faq-cta p {
        font-size: 1rem;
    }
    
    .faq-cta-btn {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
}

@media (max-width: 360px) {
    .faq-question {
        padding: 15px 50px 15px 15px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-number {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
        margin-right: 12px;
    }
    
    .faq-toggle {
        right: 15px;
        width: 30px;
        height: 30px;
    }
}






/* İletişim Bölümü - Modern ve Mobil Uyumlu */
.contact-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.contact-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Başlık Bölümü */
.contact-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
}

.contact-header .section-subtitle {
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 15px;
    padding: 8px 20px;
    background: rgba(26, 90, 185, 0.1);
    border-radius: 30px;
    border: 1px solid rgba(26, 90, 185, 0.2);
}

.contact-header .section-title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--dark);
    position: relative;
}

.contact-header .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
}

.contact-header .section-description {
    font-size: 1.1rem;
    color: var(--gray-dark);
    max-width: 800px;
    margin: 30px auto 0;
    line-height: 1.7;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

/* İletişim Bilgileri */
.contact-info {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-info-header {
    margin-bottom: 40px;
    text-align: center;
}

.contact-info-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.contact-info-header p {
    color: var(--gray-dark);
    font-size: 1rem;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: var(--bg-light);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.contact-info-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(26, 90, 185, 0.1);
}

.contact-info-card.urgent {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1) 0%, rgba(255, 61, 61, 0.05) 100%);
    border-left: 4px solid #ff6b6b;
}

.contact-info-card.whatsapp {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.1) 0%, rgba(37, 211, 102, 0.05) 100%);
    border-left: 4px solid #25D366;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-card.urgent .contact-icon {
    background: #ff6b6b;
}

.contact-info-card.whatsapp .contact-icon {
    background: #25D366;
}

.contact-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.contact-info-content {
    flex: 1;
}

.contact-info-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.contact-info-content a {
    display: block;
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.contact-info-content a:hover {
    color: var(--primary-light);
}

.contact-info-card.urgent a {
    color: #ff6b6b;
}

.contact-info-card.whatsapp a {
    color: #25D366;
}

.contact-info-content p {
    font-size: 0.9rem;
    color: var(--gray-dark);
    margin: 5px 0 0;
    line-height: 1.5;
}

/* Sosyal Medya */
.contact-social {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--gray-light);
}

.contact-social h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
    text-align: center;
}

.contact-social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.social-icon {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--bg-light);
    border-radius: 10px;
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.social-icon i {
    font-size: 1.2rem;
}

.social-icon.instagram {
    color: #E4405F;
}

.social-icon.facebook {
    color: #1877F2;
}

.social-icon.youtube {
    color: #FF0000;
}

.social-icon.linkedin {
    color: #0A66C2;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.social-icon.instagram:hover {
    background: rgba(228, 64, 95, 0.1);
    border-color: #E4405F;
}

.social-icon.facebook:hover {
    background: rgba(24, 119, 242, 0.1);
    border-color: #1877F2;
}

.social-icon.youtube:hover {
    background: rgba(255, 0, 0, 0.1);
    border-color: #FF0000;
}

.social-icon.linkedin:hover {
    background: rgba(10, 102, 194, 0.1);
    border-color: #0A66C2;
}

/* Harita Bölümü */
.contact-map {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.map-container {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.map-header {
    padding: 30px 30px 20px;
    text-align: center;
    border-bottom: 1px solid var(--gray-light);
}

.map-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.map-header h3 i {
    color: var(--primary);
}

.map-header p {
    color: var(--gray-dark);
    font-size: 1rem;
}

.map-wrapper {
    position: relative;
    flex: 1;
    min-height: 400px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    display: block;
}

.map-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
}

.map-direction-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--white);
    color: var(--primary);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.map-direction-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(26, 90, 185, 0.3);
}

.map-info {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px 30px;
    border-top: 1px solid var(--gray-light);
    background: var(--bg-light);
    flex-wrap: wrap;
}

.map-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-dark);
    font-size: 0.9rem;
}

.map-info-item i {
    color: var(--primary);
    font-size: 1rem;
}

/* İletişim CTA */
.contact-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(26, 90, 185, 0.3);
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"><rect width="40" height="40" fill="none"/><circle cx="20" cy="20" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.5;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-icon {
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 20px;
    opacity: 0.9;
}

.cta-text {
    margin-bottom: 30px;
}

.cta-text h3 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--white);
}

.cta-text p {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.cta-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 160px;
    justify-content: center;
}

.cta-btn.call {
    background: var(--white);
    color: var(--primary);
}

.cta-btn.mail {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.cta-btn.whatsapp {
    background: #25D366;
    color: var(--white);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.cta-btn.call:hover {
    background: var(--bg-light);
}

.cta-btn.mail:hover {
    background: rgba(255, 255, 255, 0.1);
}

.cta-btn.whatsapp:hover {
    background: #1da851;
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 80px 0 0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.footer .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

/* Logo Kolonu */
.logo-col .footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    text-decoration: none;
}

.logo-col .logo-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.logo-col .logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
}

.logo-col .logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-col .logo-name {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
}

.logo-col .logo-subtitle {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.5px;
}

.footer-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 25px;
}

.footer-certificates {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.certificate {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--white);
}

.certificate i {
    color: var(--accent);
    font-size: 0.9rem;
}

/* Footer Başlıkları */
.footer-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), transparent);
    border-radius: 2px;
}

/* Footer Linkleri */
.footer-links,
.footer-services {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li a,
.footer-services li a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-links li a i,
.footer-services li a i {
    font-size: 0.8rem;
    color: var(--accent);
    transition: transform 0.3s ease;
}

.footer-links li a:hover,
.footer-services li a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-links li a:hover i,
.footer-services li a:hover i {
    transform: translateX(3px);
}

/* Footer İletişim */
.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-item i {
    color: var(--accent);
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-item div {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.contact-item span,
.contact-item a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.contact-item a {
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--white);
}

/* Footer Alt Bölüm */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

/* --- Geliştirici Logo Güncellemesi - Modern Tasarım --- */
.copyright {
    text-align: left;
}

.developer-credit {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    max-width: 300px;
}

.developer-credit:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.dev-logo-container {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid var(--accent);
}

.dev-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.developer-credit:hover .dev-logo {
    transform: scale(1.1);
}

.dev-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex-grow: 1;
}

.dev-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.dev-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
    transition: color 0.3s ease;
}

.developer-credit:hover .dev-name {
    color: var(--accent);
}

.dev-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 8px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.dev-link:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Mobil için düzenlemeler */
@media (max-width: 768px) {
    .copyright {
        text-align: center;
    }
    
    .developer-credit {
        max-width: 280px;
        margin: 8px auto 0;
        justify-content: center;
    }
    
    .dev-text {
        text-align: left;
    }
}

@media (max-width: 576px) {
    .developer-credit {
        padding: 10px 12px;
        gap: 10px;
    }
    
    .dev-logo-container {
        width: 35px;
        height: 35px;
    }
    
    .dev-name {
        font-size: 0.85rem;
    }
    
    .dev-label {
        font-size: 0.7rem;
    }
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.footer-legal {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--white);
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social .social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.footer-social .social-icon:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-payment {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.payment-methods {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.payment-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.payment-methods i {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
}

.payment-methods i:hover {
    color: var(--white);
}

/* Responsive Tasarım */
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .contact-grid {
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .contact-section {
        padding: 80px 0;
    }
    
    .contact-header .section-title {
        font-size: 2.3rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info,
    .contact-map {
        max-width: 800px;
        margin: 0 auto;
    }
    
    .contact-cta {
        padding: 40px 30px;
    }
    
    .cta-text h3 {
        font-size: 1.8rem;
    }
    
    .footer {
        padding: 60px 0 0;
    }
    
    .footer-grid {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .contact-header {
        margin-bottom: 50px;
    }
    
    .contact-header .section-title {
        font-size: 2rem;
    }
    
    .contact-info {
        padding: 30px;
    }
    
    .contact-info-card {
        padding: 20px;
    }
    
    .contact-social-icons {
        flex-direction: column;
        align-items: center;
    }
    
    .social-icon {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    .map-header {
        padding: 20px 20px 15px;
    }
    
    .map-header h3 {
        font-size: 1.5rem;
    }
    
    .map-info {
        padding: 15px 20px;
    }
    
    .contact-cta {
        padding: 30px 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-legal {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-header .section-title {
        font-size: 1.8rem;
    }
    
    .contact-header .section-description {
        font-size: 1rem;
    }
    
    .contact-info {
        padding: 25px 20px;
    }
    
    .contact-info-header h3 {
        font-size: 1.5rem;
    }
    
    .contact-info-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .contact-icon {
        margin-bottom: 15px;
    }
    
    .map-header h3 {
        font-size: 1.3rem;
    }
    
    .map-overlay {
        top: 10px;
        right: 10px;
    }
    
    .map-direction-btn {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
    
    .map-info {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .cta-text h3 {
        font-size: 1.5rem;
    }
    
    .cta-text p {
        font-size: 1rem;
    }
    
    .logo-col .footer-logo {
        flex-direction: column;
        text-align: center;
    }
    
    .logo-col .logo-text {
        align-items: center;
    }
    
    .footer-certificates {
        justify-content: center;
    }
    
    .payment-methods {
        justify-content: center;
    }
}










/* AOS Animasyon Hazırlık Sınıfları */
[data-aos] {
    opacity: 0;
    transition-property: transform, opacity;
}

[data-aos].aos-animate {
    opacity: 1;
}

/* Özel Animasyon Efektleri */
[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-down"] {
    transform: translateY(-30px);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos="zoom-in"] {
    transform: scale(0.8);
}

[data-aos="zoom-out"] {
    transform: scale(1.2);
}

[data-aos="flip-up"] {
    transform: perspective(1000px) rotateX(-90deg);
    transform-origin: bottom;
}

[data-aos="flip-down"] {
    transform: perspective(1000px) rotateX(90deg);
    transform-origin: top;
}

/* Delay Sınıfları - İleride Kullanmak İçin */
.aos-delay-50 { transition-delay: 50ms; }
.aos-delay-100 { transition-delay: 100ms; }
.aos-delay-150 { transition-delay: 150ms; }
.aos-delay-200 { transition-delay: 200ms; }
.aos-delay-250 { transition-delay: 250ms; }
.aos-delay-300 { transition-delay: 300ms; }
.aos-delay-400 { transition-delay: 400ms; }
.aos-delay-500 { transition-delay: 500ms; }
.aos-delay-600 { transition-delay: 600ms; }
.aos-delay-700 { transition-delay: 700ms; }
.aos-delay-800 { transition-delay: 800ms; }
.aos-delay-900 { transition-delay: 900ms; }
.aos-delay-1000 { transition-delay: 1000ms; }

/* Duration Sınıfları */
.aos-duration-200 { transition-duration: 200ms; }
.aos-duration-300 { transition-duration: 300ms; }
.aos-duration-400 { transition-duration: 400ms; }
.aos-duration-500 { transition-duration: 500ms; }
.aos-duration-600 { transition-duration: 600ms; }
.aos-duration-700 { transition-duration: 700ms; }
.aos-duration-800 { transition-duration: 800ms; }
.aos-duration-900 { transition-duration: 900ms; }
.aos-duration-1000 { transition-duration: 1000ms; }

/* Easing Sınıfları */
.aos-ease { transition-timing-function: ease; }
.aos-ease-in { transition-timing-function: ease-in; }
.aos-ease-out { transition-timing-function: ease-out; }
.aos-ease-in-out { transition-timing-function: ease-in-out; }
.aos-linear { transition-timing-function: linear; }
.aos-cubic-bezier { transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }