/* 
* Alanya Platform - Ana CSS Dosyası
* Versiyon: 1.0
*/

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

:root {
    /* Ana Renkler */
    --primary-color: #0077B6; /* Mavi tonu - kurumsal ana renk */
    --secondary-color: #FF9E00; /* Turuncu tonu - aksiyon rengi */
    --dark-color: #023E8A; /* Koyu mavi */
    --light-color: #f4f4f4; /* Açık gri */
    --white: #ffffff;
    --black: #333333;
    --success: #28a745;
    --danger: #dc3545;
    
    /* Font Boyutları */
    --h1-size: 2.5rem;
    --h2-size: 2rem;
    --h3-size: 1.5rem;
    --h4-size: 1.2rem;
    --text-size: 1rem;
    --small-text: 0.875rem;
    
    /* Boşluklar */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    
    /* Border Radius */
    --border-radius: 4px;
    --border-radius-lg: 8px;
    
    /* Gölgeler */
    --box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --box-shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--black);
    background-color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--dark-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    /* Resim yükleme performansını iyileştirme */
    will-change: transform;
}

/* Lazy load için yüklenmemiş resimlerin yer tutucusu */
img[data-src] {
    opacity: 0;
    transition: opacity 0.3s ease;
    background-color: #f0f0f0;
}

img[data-src].loaded {
    opacity: 1;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.section-title {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    color: var(--dark-color);
    position: relative;
    padding-bottom: var(--spacing-sm);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
}

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

/* Düğmeler */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

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

.btn.primary:hover {
    background-color: var(--dark-color);
}

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

.btn.secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-link {
    color: var(--primary-color);
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.btn-link::after {
    content: '→';
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.btn-link:hover::after {
    transform: translateX(5px);
}

/* Header ve Navigasyon */
header {
    background-color: var(--white);
    box-shadow: var(--box-shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: var(--spacing-sm) 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    flex-wrap: wrap;
}

.logo, .mobile-menu-toggle, .language-selector {
    z-index: 1002;
}

.logo {
    margin-right: 0;
    margin-left: 0;
    display: flex;
    align-items: center;
}

.logo img {
    height: auto;
    width: 180px;
    max-height: 60px;
    object-fit: contain;
}

.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
    color: var(--primary-color);
    background: none;
    border: none;
    margin-right: 10px;
    order: 0;
}

nav {
    flex: 1;
}

.main-menu {
    display: flex;
    justify-content: center;
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 10px;
}

.language-selector img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.2s ease;
    opacity: 0.7;
}

.language-selector img:hover {
    transform: scale(1.1);
    opacity: 1;
}

.language-selector img.active {
    opacity: 1;
    box-shadow: 0 0 0 2px #0066cc;
}

.main-menu li {
    margin: 0 var(--spacing-sm);
}

.main-menu a {
    color: var(--black);
    font-weight: 500;
    padding: 10px 0;
    position: relative;
}

.main-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.main-menu a:hover::after,
.main-menu a.active::after {
    width: 100%;
}

.main-menu a.active {
    color: var(--primary-color);
}

.language-selector a {
    margin: 0 2px;
    color: var(--black);
    font-weight: 500;
    font-size: var(--small-text);
}

.language-selector a.active {
    color: var(--primary-color);
    font-weight: 700;
}

/* Hero Bölümü */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../img/platform-main.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: var(--spacing-xl) 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--spacing-xl) 0;
}

.hero h1 {
    font-size: var(--h1-size);
    margin-bottom: var(--spacing-md);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: var(--h4-size);
    margin-bottom: var(--spacing-lg);
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
}

/* Özellikler Bölümü */
.features {
    padding: var(--spacing-xl) 0;
    background-color: var(--light-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.feature-card {
    background-color: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-lg);
}

.feature-card .icon {
    background-color: rgba(0, 119, 182, 0.1);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto var(--spacing-md);
}

.feature-card .icon i {
    font-size: 30px;
    color: var(--primary-color);
}

.feature-card h3 {
    margin-bottom: var(--spacing-sm);
    color: var(--dark-color);
}

/* Servisler Önizleme */
.services-preview {
    padding: var(--spacing-xl) 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.service-card {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-lg);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    aspect-ratio: 16/9;
}

.service-card h3, 
.service-card p, 
.service-card a {
    padding: 0 var(--spacing-md);
}

.service-card h3 {
    margin: var(--spacing-md) 0 var(--spacing-sm);
    color: var(--dark-color);
}

.service-card p {
    margin-bottom: var(--spacing-md);
}

.service-card a {
    display: block;
    margin-bottom: var(--spacing-md);
}

/* Müşteri Görüşleri */
.testimonials {
    padding: var(--spacing-xl) 0;
    background-color: var(--light-color);
}

.testimonial-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    gap: var(--spacing-lg);
    padding-bottom: var(--spacing-md);
}

.testimonial-slider::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
}

.testimonial {
    min-width: 350px;
    scroll-snap-align: start;
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--box-shadow);
}

.quote {
    margin-bottom: var(--spacing-md);
    position: relative;
}

.quote::before {
    content: '\201C';
    font-size: 4rem;
    position: absolute;
    left: -20px;
    top: -20px;
    color: rgba(0, 119, 182, 0.2);
}

.client {
    display: flex;
    align-items: center;
}

.client img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: var(--spacing-sm);
    object-fit: cover;
}

.client-info h4 {
    font-weight: 600;
    margin-bottom: 2px;
}

.client-info p {
    font-size: var(--small-text);
    color: #777;
}

/* Çağrı Bölümü */
.cta, .cta-section {
    background: #e5e5e5;
    color: var(--dark-color);
    padding: var(--spacing-xl) 0;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta h2, .cta-section h2 {
    margin-bottom: var(--spacing-m);
    color: var(--dark-color);
}

.cta p, .cta-section p {
    margin-bottom: var(--spacing-l);
    color: #333;
}

.cta .btn-primary, .cta-section .btn-primary {
    background-color: var(--primary-color);
    color: white;
    padding: 12px 24px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta .btn-primary:hover, .cta-section .btn-primary:hover {
    background-color: var(--primary-color-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: var(--white);
    padding: var(--spacing-xl) 0 var(--spacing-sm);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

/* Footer Logo Stili */
.footer-logo {
    max-width: 180px;
    width: 100%;
    height: auto;
    margin-bottom: var(--spacing-sm);
    object-fit: contain;
}

@media (max-width: 768px) {
    .footer-logo {
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    .footer-logo {
        max-width: 120px;
    }
}

.footer-about, .footer-links, .footer-contact, .footer-social {
    text-align: center;
}

.footer-about {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: var(--spacing-md);
}

.footer-about .footer-logo {
    margin: 0 auto var(--spacing-sm) auto;
    display: block;
}

.footer-about p {
    opacity: 0.8;
    width: 100%;
    text-align: center;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
    box-sizing: border-box;
}

.footer-links ul, 
.footer-contact ul {
    margin-top: var(--spacing-sm);
}

.footer-links li, 
.footer-contact li {
    margin-bottom: var(--spacing-xs);
}

.footer-links a {
    color: var(--white);
    opacity: 0.8;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

.footer-contact i {
    margin-right: 8px;
    color: var(--secondary-color);
}

.footer-contact li {
    opacity: 0.8;
}

.social-icons {
    display: flex;
    gap: 10px;
    margin-top: var(--spacing-sm);
}

.social-icons a {
    background-color: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    transition: background-color 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: var(--small-text);
    opacity: 0.7;
}

/* Mesajlaşma Butonları */
.social-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 100;
}

.social-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-size: 24px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.1);
    color: var(--white);
}

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

.social-icon.telegram {
    background-color: #0088cc;
}

.social-icon.messenger {
    background-color: #0078FF;
}

/* Responsive Tasarım */
@media (max-width: 992px) {
    .cta-buttons {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-detail-wrapper {
        flex-direction: column;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --h1-size: 2rem;
        --h2-size: 1.75rem;
        --h3-size: 1.25rem;
        --text-size: 0.95rem;
        --spacing-xl: 2rem;
        --spacing-lg: 1.5rem;
    }
    
    .container {
        padding: 0 var(--spacing-md);
    }
    
    .mobile-menu-toggle {
        display: block;
        padding: 10px;
    }
    
    .main-menu {
        display: none;
        position: fixed;
        top: 70px; /* Header yüksekliğinden biraz daha fazla */
        left: 0;
        width: 100%;
        flex-direction: column;
        background-color: var(--white);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        padding: var(--spacing-md) 0;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        z-index: 1001;
        transition: transform 0.3s ease, opacity 0.3s ease;
        transform: translateY(-10px);
        opacity: 0;
    }
    
    .main-menu.show {
        display: flex;
        transform: translateY(0);
        opacity: 1;
    }
    
    .mobile-menu-toggle {
        display: block;
        padding: 10px;
        cursor: pointer;
        z-index: 1002;
        font-size: 24px;
    }
    
    .mobile-menu-toggle.active {
        color: var(--primary-color);
    }
    
    .mobile-menu-toggle.active i:before {
        content: "\f00d"; /* X ikonu */
    }
    
    .main-menu li {
        margin: 0;
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .main-menu li:last-child {
        border-bottom: none;
    }
    
    .main-menu a {
        display: block;
        padding: 12px var(--spacing-lg);
        color: var(--black);
        font-weight: 500;
    }
    
    .main-menu a:hover, 
    .main-menu a.active {
        color: var(--primary-color);
        background-color: rgba(0, 119, 182, 0.05);
    }
    
    .main-menu .dropdown-menu {
        position: static;
        box-shadow: none;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.02);
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        opacity: 1;
        margin-left: 0;
        border-radius: 0;
    }
    
    .main-menu .dropdown.active .dropdown-menu {
        max-height: 500px;
        display: block;
    }
    
    .main-menu .dropdown-menu a {
        padding-left: calc(var(--spacing-lg) * 2);
        font-size: 14px;
    }
    
    .main-menu .dropdown > a:after {
        float: right;
        transition: transform 0.3s ease;
        margin-top: 5px;
    }
    
    .main-menu .dropdown.active > a:after {
        transform: rotate(180deg);
    }
    
    .main-menu .dropdown {
        position: relative;
    }
    
    .logo {
        flex: 0 0 auto;
    }
    
    .logo img {
        width: 150px;
        max-height: 50px;
    }
    
    .language-selector {
        position: absolute;
        right: 65px;
        top: 16px;
        margin-right: 0;
        min-width: unset;
        padding-left: 0;
    }
    
    .feature-card {
        padding: var(--spacing-md);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .testimonial-slider {
        padding-bottom: var(--spacing-md);
    }
    
    .testimonial {
        min-width: 280px;
        padding: var(--spacing-md);
    }
    
    .hero {
        padding: var(--spacing-lg) 0;
    }
    
    .hero-content {
        padding: var(--spacing-md) 0;
        text-align: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .social-icons {
        justify-content: center;
    }

    .service-detail {
        grid-template-columns: 1fr;
    }
    
    .service-image img {
        max-height: 250px;
    }
    
    .specs-row {
        flex-direction: column;
    }
    
    .specs-label, .specs-value {
        width: 100%;
    }
    
    .specs-label {
        padding-bottom: 0;
    }

    .service-card img {
        height: 180px;
    }
    
    .page-header {
        padding: var(--spacing-md) 0;
    }
    
    .hero h1 {
        font-size: 1.8rem;
        margin-bottom: var(--spacing-sm);
    }
    
    .hero p {
        font-size: 1rem;
        margin-bottom: var(--spacing-md);
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: var(--spacing-md) 0;
    }
    
    .feature-card .icon {
        width: 50px;
        height: 50px;
    }
    
    .feature-card .icon i {
        font-size: 20px;
    }
    
    .testimonial {
        min-width: 100%;
    }
    
    .social-float {
        bottom: 15px;
        right: 15px;
        gap: 8px;
    }
    
    .social-icon {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }
    
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    body {
        font-size: 14px;
    }
    
    .btn {
        padding: 10px 16px;
        font-size: 14px;
    }
    
    .section-title {
        font-size: 1.6rem;
        margin-bottom: var(--spacing-md);
    }
    
    .testimonial-slider {
        margin: 0 calc(var(--spacing-sm) * -1);
        padding: 0 var(--spacing-sm);
    }
    
    .client img {
        width: 40px;
        height: 40px;
    }
    
    .page-header h1 {
        font-size: 1.6rem;
    }
    
    .cta-box {
        padding: var(--spacing-sm);
    }
    
    .footer {
        padding: var(--spacing-lg) 0;
    }
    
    .logo img {
        width: 120px;
        max-height: 40px;
    }
}

/* iPhone SE gibi küçük ekranlar için */
@media (max-width: 375px) {
    .social-float {
        bottom: 10px;
        right: 10px;
        gap: 6px;
    }
    
    .social-icon {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
    
    .language-selector {
        right: 55px;
    }
    
    .hero h1 {
        font-size: 1.5rem;
    }
}

/* Sayfa Başlık Bölümü */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/page-header-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: var(--spacing-lg) 0;
    text-align: center;
}

.page-header h1 {
    font-size: var(--h1-size);
    margin-bottom: var(--spacing-sm);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.breadcrumb {
    font-size: var(--small-text);
}

.breadcrumb a {
    color: var(--secondary-color);
}

.breadcrumb span {
    color: var(--white);
    opacity: 0.8;
}

/* Hizmetler Sayfası */
.services-content {
    padding: var(--spacing-xl) 0;
}

.service-category {
    margin-bottom: var(--spacing-xl);
}

.service-detail {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--spacing-lg);
    align-items: start;
}

.service-image img {
    border-radius: var(--border-radius-lg);
    width: 100%;
    height: auto;
    max-height: 350px;
    object-fit: cover;
    object-position: center;
    aspect-ratio: 16/9;
}

.service-text h3 {
    color: var(--dark-color);
    margin: var(--spacing-md) 0 var(--spacing-sm);
}

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

.check-list {
    margin-bottom: var(--spacing-md);
}

.check-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: var(--spacing-xs);
}

.check-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 2px;
}

.specs-table {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    margin-bottom: var(--spacing-md);
}

.specs-row {
    display: flex;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.specs-row:last-child {
    border-bottom: none;
}

.specs-label {
    width: 40%;
    padding: var(--spacing-sm);
    font-weight: 600;
    color: var(--dark-color);
}

.specs-value {
    width: 60%;
    padding: var(--spacing-sm);
}

.cta-box {
    background-color: rgba(0, 119, 182, 0.05);
    border-left: 4px solid var(--primary-color);
    padding: var(--spacing-md);
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    margin-top: var(--spacing-lg);
}

.cta-box p {
    margin-bottom: var(--spacing-sm);
}

@media (max-width: 768px) {
    .service-detail {
        grid-template-columns: 1fr;
    }
    
    .specs-row {
        flex-direction: column;
    }
    
    .specs-label, .specs-value {
        width: 100%;
    }
    
    .specs-label {
        padding-bottom: 0;
    }
}

/* İletişim Sayfası */
.contact-content {
    padding: var(--spacing-xl) 0;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.contact-info-card {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
}

.contact-info-card .icon {
    background-color: rgba(0, 119, 182, 0.1);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto var(--spacing-md);
}

.contact-info-card .icon i {
    font-size: 28px;
    color: var(--primary-color);
}

.contact-info-card h3 {
    margin-bottom: var(--spacing-sm);
    color: var(--dark-color);
}

.contact-form-map {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.contact-form-container {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--box-shadow);
}

.contact-subtitle {
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: var(--text-size);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.form-group input.invalid,
.form-group select.invalid,
.form-group textarea.invalid {
    border-color: var(--danger);
}

.error-message {
    color: var(--danger);
    font-size: var(--small-text);
    margin-top: 5px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-group input {
    width: auto;
    margin-right: 10px;
    margin-top: 4px;
}

.checkbox-group label {
    font-weight: normal;
    font-size: var(--small-text);
    line-height: 1.4;
}

.btn-block {
    width: 100%;
}

.map-container {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    height: 100%;
}

.map-container iframe {
    display: block;
    height: 100%;
}

/* SSS Bölümü */
.faq-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--light-color);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--white);
    border-radius: var(--border-radius);
    margin-bottom: var(--spacing-sm);
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.faq-question {
    padding: var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    margin: 0;
    font-size: var(--h4-size);
    color: var(--dark-color);
}

.faq-toggle {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 var(--spacing-md) var(--spacing-md);
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

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

@media (max-width: 768px) {
    .contact-info-card {
        padding: var(--spacing-md);
    }
    
    .contact-info-card .icon {
        width: 60px;
        height: 60px;
    }
    
    .contact-info-card .icon i {
        font-size: 24px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
}

/* Yakında Gelecek Hizmetler */
.service-card.coming-soon {
    position: relative;
    background-color: rgba(0, 119, 182, 0.05);
    border: 2px dashed var(--primary-color);
}

.service-card.coming-soon img {
    opacity: 0.7;
}

.coming-soon-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: var(--small-text);
    font-weight: 600;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transform: rotate(5deg);
}

/* Hakkımızda Sayfası Stilleri */
.about-content {
    padding: 60px 0;
}

.about-intro {
    display: flex;
    margin-bottom: 60px;
}

.about-image {
    flex: 0 0 45%;
    margin-right: 5%;
}

.about-image img {
    width: 100%;
    border-radius: 6px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-text {
    flex: 0 0 50%;
}

.about-text h2 {
    margin-bottom: 20px;
    color: #0077B6;
}

.about-text p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 60px;
}

.value-card {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 6px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.value-card .icon {
    margin-bottom: 20px;
    width: 60px;
    height: 60px;
    background-color: rgba(0, 119, 182, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-card .icon i {
    font-size: 24px;
    color: #0077B6;
}

.value-card h3 {
    margin-bottom: 15px;
    color: #333;
}

.timeline {
    position: relative;
    max-width: 1200px;
    margin: 40px auto 60px;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background-color: #0077B6;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
    border-radius: 10px;
}

.timeline-item {
    padding: 10px 50px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    background-color: white;
    border: 4px solid #0077B6;
    top: 18px;
    border-radius: 50%;
    z-index: 1;
}

.timeline-item:nth-child(odd)::after {
    right: -12px;
}

.timeline-item:nth-child(even)::after {
    left: -12px;
}

.year {
    position: absolute;
    top: 18px;
    font-weight: bold;
    font-size: 18px;
    color: #0077B6;
}

.timeline-item:nth-child(odd) .year {
    right: -150px;
}

.timeline-item:nth-child(even) .year {
    left: -150px;
}

.event {
    padding: 20px;
    background-color: white;
    border-radius: 6px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.event h3 {
    margin-bottom: 10px;
    color: #0077B6;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.team-member {
    background-color: white;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.member-photo {
    height: 250px;
    overflow: hidden;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info {
    padding: 20px;
    text-align: center;
}

.member-info h3 {
    margin-bottom: 5px;
    color: #333;
}

.member-info .position {
    margin-bottom: 15px;
    color: #0077B6;
    font-weight: 600;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-intro {
        flex-direction: column;
    }
    
    .about-image, .about-text {
        flex: 0 0 100%;
        margin-right: 0;
    }
    
    .about-image {
        margin-bottom: 30px;
    }
    
    .timeline::after {
        left: 31px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    
    .timeline-item:nth-child(even) {
        left: 0;
    }
    
    .timeline-item::after {
        left: 15px;
    }
    
    .timeline-item:nth-child(odd)::after {
        right: auto;
    }
    
    .timeline-item:nth-child(even)::after {
        left: 15px;
    }
    
    .year {
        position: relative;
        top: auto;
        margin-bottom: 10px;
    }
    
    .timeline-item:nth-child(odd) .year {
        right: auto;
    }
    
    .timeline-item:nth-child(even) .year {
        left: auto;
    }
}

@media (max-width: 768px) {
    .values-grid, .team-grid {
        grid-template-columns: 1fr;
    }
}

/* Dropdown Menu Styles */
.main-menu .dropdown {
    position: relative;
}

.main-menu .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    min-width: 220px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    z-index: 1000;
    border-radius: 4px;
    padding: 10px 0;
}

.main-menu .dropdown:hover .dropdown-menu {
    display: block;
}

.main-menu .dropdown-menu li {
    display: block;
    width: 100%;
}

.main-menu .dropdown-menu a {
    color: #333;
    padding: 10px 20px;
    display: block;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.main-menu .dropdown-menu a:hover {
    background-color: #f8f9fa;
    color: #ff6b00;
}

.main-menu .dropdown > a:after {
    content: "\f107";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-left: 5px;
    font-size: 12px;
}

/* Mobile Dropdown Styles */
@media (max-width: 991px) {
    .mobile-menu-toggle {
        display: block;
        background: none;
        border: none;
        font-size: 24px;
        color: var(--primary-color);
        cursor: pointer;
        padding: 10px;
        z-index: 1002;
        transition: transform 0.3s ease;
    }

    .mobile-menu-toggle.active i {
        transform: rotate(90deg);
    }

    .main-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--white);
        padding: 80px 20px 20px;
        overflow-y: auto;
        z-index: 1001;
    }

    .main-menu.show {
        display: block;
    }

    .main-menu li {
        margin: 0;
        padding: 0;
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .main-menu li:last-child {
        border-bottom: none;
    }

    .main-menu a {
        padding: 15px;
        display: block;
        color: var(--black);
        font-size: 16px;
    }

    .main-menu .dropdown-menu {
        position: static;
        width: 100%;
        background: transparent;
        box-shadow: none;
        display: none;
        padding-left: 20px;
    }

    .main-menu .dropdown.active .dropdown-menu {
        display: block;
    }

    .main-menu .dropdown > a:after {
        content: '\f105';
        font-family: 'Font Awesome 5 Free';
        font-weight: 900;
        float: right;
        transition: transform 0.3s ease;
    }

    .main-menu .dropdown.active > a:after {
        transform: rotate(90deg);
    }

    .language-selector {
        margin-right: 50px;
    }

    header .container {
        padding: 10px 20px;
    }

    .logo img {
        height: 40px;
    }
}

/* Bildirim Sistemi */
.notification {
    position: fixed;
    top: -100px;
    right: 20px;
    max-width: 350px;
    background-color: white;
    border-radius: var(--border-radius);
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 2000;
    transition: all 0.3s ease;
    opacity: 0;
}

.notification.show {
    top: 20px;
    opacity: 1;
}

.notification .message {
    flex: 1;
    padding-right: 10px;
}

.notification .close {
    background: none;
    border: none;
    font-size: 16px;
    color: #999;
    cursor: pointer;
    padding: 5px;
}

.notification .close:hover {
    color: #333;
}

.notification.success {
    border-left: 4px solid var(--success);
}

.notification.error {
    border-left: 4px solid var(--danger);
}

.notification.info {
    border-left: 4px solid var(--primary-color);
}

.notification.warning {
    border-left: 4px solid var(--secondary-color);
}

/* Mobil cihazlar için bildirim */
@media (max-width: 480px) {
    .notification {
        max-width: calc(100% - 40px);
        right: 10px;
    }
    
    .notification.show {
        top: 10px;
    }
}

/* Dokunmatik cihazlar için hover durumlarını iyileştirme */
@media (hover: hover) {
    /* Hover efektleri sadece hover destekleyen cihazlarda */
    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--box-shadow-lg);
    }
    
    .btn:hover {
        opacity: 0.9;
    }
    
    .social-icon:hover {
        transform: scale(1.1);
    }
}

/* Dokunmatik cihazlar için özel hover desteği */
.btn:active, 
.social-icon:active,
.feature-card:active,
.service-card:active {
    transform: scale(0.98);
    transition: transform 0.1s ease;
}

/* Mobil cihazlarda aktif durumlar */
@media (max-width: 768px) {
    .main-menu.show {
        display: flex;
        animation: slideDown 0.3s ease forwards;
    }
    
    .main-menu a.active {
        color: var(--primary-color);
        font-weight: 600;
    }
    
    .mobile-menu-toggle.active i:before {
        content: "\f00d"; /* X ikonu */
    }
    
    /* Mobil menü animasyonu */
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    /* Form alanları için focus durumu */
    input.focus, textarea.focus {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 3px rgba(0, 119, 182, 0.1);
    }
}

/* Scrolled header durumu */
header.scrolled {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

/* Sayfa geçişlerine smooth efekti */
html {
    scroll-behavior: smooth;
}

/* Back to top button iyileştirmeleri */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 99;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.back-to-top.show {
    opacity: 1;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: var(--dark-color);
}

@media (max-width: 768px) {
    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 20px;
        right: 20px;
    }
    
    /* Sosyal medya butonları ve back-to-top butonunun çakışmasını engelle */
    .social-float {
        bottom: 80px;
    }
}

/* Mobil input stilleri */
@media (max-width: 768px) {
    input, textarea, select {
        font-size: 16px !important; /* iPhone'da yakınlaştırmayı önlemek için */
    }
}

/* Responsive header ayarları */
@media (max-width: 991px) {
    header .container {
        padding: 0 var(--spacing-sm);
        justify-content: space-between;
    }
    
    .language-selector {
        position: absolute;
        right: 60px; /* Mobile toggle'a yer açmak için */
        top: 50%;
        transform: translateY(-50%);
    }
} 