/* 
* Yaşar Bilişim Teknolojileri - Main Stylesheet
* Author: Trae AI
* Version: 3.0
*/

/* ===== Root Variables ===== */
:root {
    --primary-color: #0F52BA; /* Profesyonel koyu mavi */
    --secondary-color: #00C2FF; /* Parlak mavi */
    --accent-color: #00FF9D; /* Parlak yeşil-turkuaz */
    --tertiary-color: #FFD700; /* Altın sarısı */
    --footer-bg: #0A192F; /* Koyu lacivert */
    --footer-text: #ffffff;
    --footer-link: #00C2FF;
    --footer-link-hover: #00FF9D;
    --text-primary: #ccd6f6; /* Açık gri-mavi metin */
    --text-secondary: #8892b0; /* Orta gri-mavi metin */
    --heading-color: #ffffff; /* Başlıklar için beyaz */
    --dark-color: #0a192f; /* Koyu lacivert arka plan */
    --light-color: #172a45; /* Orta lacivert arka plan */
    --gray-color: #495670; /* Mavi-gri ton */
    --success-color: #00FF9D; /* Parlak yeşil-turkuaz */
    --info-color: #00C2FF; /* Parlak mavi */
    --warning-color: #FFD700; /* Altın sarısı */
    --danger-color: #FF457D; /* Parlak pembe */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Roboto Mono', monospace;
    --transition: all 0.4s cubic-bezier(0.2, 0, 0.4, 1);
    --box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    --perspective: 2000px;
    --depth: 120px;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --neon-glow: 0 0 15px var(--secondary-color), 0 0 25px rgba(0, 229, 255, 0.4);
    --neon-text-shadow: 0 0 5px var(--secondary-color), 0 0 10px var(--secondary-color), 0 0 15px rgba(0, 245, 255, 0.3);
    --card-hover-transform: translateY(-20px) rotateX(12deg) rotateY(12deg) scale(1.03);
    --blur-effect: blur(15px);
    --gradient-overlay: linear-gradient(120deg, rgba(74, 0, 224, 0.7), rgba(0, 245, 255, 0.7));
    --border-glow: 0 0 15px rgba(0, 245, 255, 0.7);
    --text-gradient: linear-gradient(to right, var(--secondary-color), var(--accent-color));
}

/* ===== Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    color: var(--text-primary);
    background-color: #ffffff;
    overflow-x: hidden;
    font-size: 16px;
    line-height: 1.6;
    background: var(--dark-color);
    perspective: var(--perspective);
    min-height: 100vh;
    position: relative;
}

/* ===== Header & Navbar Styles ===== */
.header {
    position: relative;
    z-index: 9999;
}

.navbar {
    padding: 25px 0;
    transition: all 0.4s ease;
    background-color: rgba(10, 25, 47, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    min-height: 120px;
}

.navbar.sticky {
    padding: 15px 0;
    background-color: rgba(10, 25, 47, 0.98);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3), 0 0 15px rgba(0, 229, 255, 0.2);
    min-height: 100px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    padding: 0;
    margin-right: 30px;
    height: 120px;
}

@media (min-width: 992px) {
    .navbar-brand {
        height: 130px;
    }
}

/* Mobil için logo stili */
.logo {
    height: 120px;
    max-width: 280px;
    transition: all 0.3s ease; /* Daha basit ve hafif transition */
    filter: drop-shadow(0 0 8px rgba(0, 229, 255, 0.4));
    margin-top: 5px;
}

/* Masaüstü için logo stili */
@media (min-width: 992px) {
    .logo {
        height: 150px;
        max-width: 350px;
        filter: contrast(1.2) saturate(1.1) drop-shadow(0 0 10px rgba(0, 229, 255, 0.5));
        transform: scale(1.1);
    }
    
    .navbar.sticky .logo {
        height: 100px;
        max-width: 250px;
        transform: scale(1.05);
    }
}

/* Bu stil media query içine taşındı */

.navbar-nav {
    margin-left: auto;
    display: flex;
    align-items: center;
}

.nav-item {
    margin: 0 5px;
    position: relative;
    display: flex;
    align-items: center;
}

.nav-link {
    color: var(--text-primary) !important;
    font-weight: 500;
    padding: 8px 15px !important;
    position: relative;
    transition: all 0.3s ease;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    white-space: nowrap; /* Menü yazılarının satır atlamasını engeller */
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary-color) !important;
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.7);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 70%;
}

/* Animated Background */
/* Mobil cihazlarda animasyonlu arka planı kaldırıyoruz */
@media (min-width: 992px) {
    body::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(-45deg, var(--dark-color), var(--footer-bg), var(--primary-color), #2D0BA9);
        background-size: 400% 400%;
        animation: gradientBG 20s ease infinite; /* Daha yavaş animasyon */
        opacity: 0.4;
        z-index: -1;
        pointer-events: none;
    }
}

/* Mobil cihazlar için sabit arka plan */
@media (max-width: 991px) {
    body::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--dark-color);
        opacity: 1;
        z-index: -1;
        pointer-events: none;
    }
}

/* Particle Overlay */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="30" cy="30" r="1" fill="%23ffffff" opacity="0.4"/><circle cx="70" cy="70" r="1.5" fill="%2300F5FF" opacity="0.3"/><circle cx="50" cy="50" r="0.8" fill="%23FF2D95" opacity="0.3"/></svg>');
    background-size: 180px 180px;
    z-index: -1;
    opacity: 0.6;
    pointer-events: none;
    animation: particleFloat 150s linear infinite;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes particleFloat {
    0% { background-position: 0 0; }
    100% { background-position: 1000px 1000px; }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    background-color: var(--dark-color);
}

::-webkit-scrollbar-track {
    background: var(--dark-color);
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.3);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--secondary-color), var(--accent-color));
    border-radius: 10px;
    transition: var(--transition);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(var(--accent-color), var(--tertiary-color));
    box-shadow: 0 0 8px var(--accent-color);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--heading-color);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

h1 {
    font-size: 4.5rem;
    color: var(--secondary-color);
    /* Parlaklık ve gölge efektleri azaltıldı */
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.3);
    position: relative;
    letter-spacing: 2px;
    font-weight: 800;
    transform-style: preserve-3d;
}

/* Animasyon kaldırıldı */

/* Sayfa yükleme animasyonu */
.page-loaded .page-header h1,
.page-loaded .page-header .breadcrumb,
.page-loaded .service-detail-image,
.page-loaded .service-detail-content h2,
.page-loaded .service-detail-content p,
.page-loaded .service-detail-content ul,
.page-loaded .service-detail-content .btn-primary {
    animation: none;
    opacity: 1;
    transform: none;
}

/* Hizmet sayfaları için page-header başlık stili */
.page-header h1 {
    color: #ffffff;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
    filter: brightness(1) contrast(1);
    font-size: 3.5rem;
    animation: fadeInDown 1.2s ease-out forwards;
    opacity: 0;
}

/* Hizmet sayfaları için içerik animasyonları */
@keyframes floatImage {
    0% { transform: translateY(0) translateZ(0) rotateY(0deg); }
    50% { transform: translateY(-10px) translateZ(20px) rotateY(2deg); }
    100% { transform: translateY(0) translateZ(0) rotateY(0deg); }
}

@keyframes glowPulse {
    0% { box-shadow: var(--box-shadow); }
    50% { box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 20px var(--secondary-color); }
    100% { box-shadow: var(--box-shadow); }
}

@keyframes borderGlow {
    0% { border-color: rgba(0, 194, 255, 0.3); }
    50% { border-color: var(--accent-color); }
    100% { border-color: rgba(0, 194, 255, 0.3); }
}

.service-detail-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
    transform: translateY(30px);
    opacity: 0;
    animation: fadeInUp 1.2s ease-out 0.3s forwards, glowPulse 4s ease-in-out 2s infinite;
    transform-style: preserve-3d;
    perspective: 1000px;
    border: 2px solid rgba(0, 194, 255, 0.3);
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.service-detail-image img {
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.8s ease;
    width: 100%;
    height: auto;
    transform-origin: center center;
    animation: floatImage 6s ease-in-out infinite;
    transform-style: preserve-3d;
    backface-visibility: hidden;
}

.service-detail-image:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--accent-color);
    animation: glowPulse 2s ease-in-out infinite, borderGlow 2s ease-in-out infinite;
}

.service-detail-image:hover img {
    transform: scale(1.08) translateZ(30px);
    filter: brightness(1.15) contrast(1.15) saturate(1.1);
    animation: none;
}

.service-detail-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 194, 255, 0.4), rgba(0, 255, 157, 0.4));
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
    z-index: 1;
    transform: translateZ(10px);
}

.service-detail-image::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 70%);
    transform: rotate(30deg);
    opacity: 0;
    transition: opacity 0.5s ease, transform 1s ease;
    z-index: 2;
}

.service-detail-image:hover::before {
    opacity: 1;
    transform: translateZ(20px);
}

.service-detail-image:hover::after {
    opacity: 1;
    transform: rotate(30deg) translate(10%, 10%);
}

.service-detail-content h2 {
    transform: translateX(-30px);
    opacity: 0;
    animation: fadeInLeft 1.2s ease-out 0.2s forwards;
}

.service-detail-content p {
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 1.2s ease-out 0.4s forwards;
}

.service-detail-content ul {
    transform: translateX(-20px);
    opacity: 0;
    animation: fadeInLeft 1.2s ease-out 0.6s forwards;
}

.service-detail-content .btn-primary {
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 1.2s ease-out 0.8s forwards;
}

h2 {
    font-size: 3rem;
    position: relative;
    display: inline-block;
    overflow: hidden;
}

h2::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    bottom: 0;
    left: 0;
    background: linear-gradient(to right, var(--secondary-color), var(--accent-color));
    transform: translateX(-100%);
    transition: var(--transition);
}

h2:hover::before {
    transform: translateX(0);
    box-shadow: var(--neon-glow);
}

p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-primary);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    font-weight: 500;
}

a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -3px;
    left: 0;
    background: var(--accent-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.86, 0, 0.07, 1);
}

a:hover {
    color: var(--accent-color);
    text-shadow: 0 0 8px var(--accent-color);
}

a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
    box-shadow: 0 0 8px var(--accent-color);
}

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

img {
    max-width: 100%;
    height: auto;
    transition: var(--transition);
    filter: brightness(1.05) contrast(1.05);
}

.section-padding {
    padding: 120px 0;
}

/* ===== Preloader ===== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--dark-color);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spinner {
    width: 80px;
    height: 80px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    border-top-color: var(--accent-color);
    border-left-color: var(--secondary-color);
    border-right-color: var(--tertiary-color);
    animation: spin 1s ease-in-out infinite;
    box-shadow: 0 0 30px rgba(255, 64, 129, 0.7);
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ===== Media Queries ===== */

/* Responsive Logo Sizes */
@media (max-width: 991px) {
    .logo {
        height: 120px;
        max-width: 280px;
        transform: scale(1.1);
    }
    
    .navbar.sticky .logo {
        height: 90px;
        max-width: 220px;
        transform: scale(1.0);
    }
}

@media (max-width: 767px) {
    .logo {
        height: 110px;
        max-width: 260px;
        transform: scale(1.05);
    }
    
    .navbar.sticky .logo {
        height: 80px;
        max-width: 200px;
        transform: scale(0.95);
    }
}

@media (max-width: 575px) {
    .logo {
        height: 100px;
        max-width: 240px;
        transform: scale(1.0);
    }
    
    .navbar.sticky .logo {
        height: 70px;
        max-width: 180px;
        transform: scale(0.9);
    }
}

/* ===== Header ===== */
.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 9999;
    pointer-events: auto;
}

.navbar {
    padding: 15px 0;
    transition: var(--transition);
    background: rgba(10, 14, 23, 0.85);
    backdrop-filter: var(--blur-effect);
    box-shadow: var(--box-shadow);
    width: 100%;
    pointer-events: auto;
    z-index: 9999;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
}

.navbar.sticky {
    background: rgba(15, 30, 69, 0.92);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 245, 255, 0.2);
}

.navbar-brand {
    padding: 0;
}

.logo {
    height: 70px;
    max-width: 170px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(1.2) contrast(1.1) drop-shadow(0 0 10px rgba(0, 229, 255, 0.5));
    z-index: 10000;
    /* Animasyon kaldırıldı */
    transform-origin: center center;
    background-color: #ffffff;
    padding: 8px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.3);
}

/* Logo animasyonu kaldırıldı */

.navbar-brand:hover .logo {
    transform: scale(1.05);
    filter: brightness(1.3) contrast(1.2) drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

.navbar.sticky .logo {
    height: 50px;
    filter: brightness(1.0) contrast(1.0) drop-shadow(0 0 5px rgba(0, 229, 255, 0.3));
}

.navbar-nav .nav-item {
    margin-left: 20px;
    position: relative;
}

.navbar-nav .nav-link {
    color: var(--text-primary);
    font-weight: 500;
    padding: 10px 18px;
    transition: var(--transition);
    position: relative;
    font-size: 17px;
    z-index: 10000;
    pointer-events: auto;
    letter-spacing: 1px;
    overflow: hidden;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.7, 0, 0.3, 1);
    z-index: -1;
    border-radius: 5px;
}

.navbar.sticky .navbar-nav .nav-link {
    color: #ffffff;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--secondary-color);
    text-shadow: 0 0 10px var(--secondary-color);
    transform: translateY(-2px);
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
    transform: translateY(0);
}

/* ===== Hero Section ===== */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 100px;
    will-change: transform, opacity;
}

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

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease, transform 1.5s ease;
    display: flex;
    align-items: center;
    transform: scale(1.1);
    will-change: transform, opacity;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -webkit-perspective: 1000;
    perspective: 1000;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    will-change: opacity;
    mix-blend-mode: multiply;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
    transform: scale(1);
}

.hero-content {
    position: relative;
    z-index: 2;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.hero-title {
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 25px;
    color: #FFFFFF;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.9);
    animation: heroTitleAnimation 1s ease-out, textGlow 4s infinite alternate;
    transform: translateZ(60px);
    letter-spacing: 2px;
    line-height: 1.1;
    background: rgba(0, 0, 0, 0.3);
    padding: 15px 25px;
    border-radius: 10px;
    display: inline-block;
}

@keyframes heroTitleAnimation {
    0% {
        opacity: 0;
        transform: translateY(50px) translateZ(0);
        filter: blur(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) translateZ(50px);
        filter: blur(0);
    }
}

.hero-text {
    font-size: 1.4rem;
    margin-bottom: 30px;
    color: #FFFFFF;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.9);
    animation: heroTextAnimation 1.2s ease-out;
    max-width: 800px;
    transform: translateZ(30px);
    background: rgba(0, 0, 0, 0.25);
    padding: 20px;
    border-radius: 8px;
    line-height: 1.7;
}

@keyframes heroTextAnimation {
    0% {
        opacity: 0;
        transform: translateY(30px) translateZ(0);
        filter: blur(5px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) translateZ(30px);
        filter: blur(0);
    }
}

.hero-btn {
    animation: heroBtnAnimation 1.4s ease-out;
    transform: translateZ(40px);
}

@keyframes heroBtnAnimation {
    0% {
        opacity: 0;
        transform: translateY(30px) translateZ(0);
    }
    100% {
        opacity: 1;
        transform: translateY(0) translateZ(40px);
    }
}

.hero-slider-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 20px;
}

.hero-slider-controls button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-slider-controls button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.hero-slider-controls button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px var(--accent-color);
    border-color: var(--accent-color);
}

.hero-slider-controls button:hover::before {
    opacity: 1;
}

/* ===== About Section ===== */
.about-section {
    position: relative;
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--light-color) 100%);
    color: var(--text-primary);
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.2"/></svg>');
    background-size: 150px 150px;
    z-index: 0;
    opacity: 0.3;
    pointer-events: none;
}

.about-img {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transform-style: preserve-3d;
    transition: transform 0.5s ease;
    z-index: 1;
}

.about-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
    opacity: 0.3;
    z-index: 1;
    transition: opacity 0.5s ease;
}

.about-img:hover::before {
    opacity: 0.5;
}

.about-img img, .about-img video {
    width: 100%;
    border-radius: 20px;
    transition: transform 0.5s ease;
    transform: scale(1.02);
}

.about-img:hover {
    transform: var(--card-hover-transform);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.about-img:hover img, .about-img:hover video {
    transform: scale(1.1);
}

.interactive-3d {
    transform-style: preserve-3d;
    transition: transform 0.5s ease;
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
    color: #fff;
    padding: 20px;
    border-radius: 50%;
    width: 140px;
    height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(255, 64, 129, 0.5);
    animation: badgePulse 3s infinite alternate;
    z-index: 2;
    transform: translateZ(30px) rotate(-10deg);
}

@keyframes badgePulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 64, 129, 0.7);
        transform: translateZ(30px) rotate(-10deg) scale(1);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(255, 64, 129, 0);
        transform: translateZ(30px) rotate(-5deg) scale(1.05);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 64, 129, 0);
        transform: translateZ(30px) rotate(-10deg) scale(1);
    }
}

.experience-badge .number {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.experience-badge .text {
    font-size: 1rem;
    text-align: center;
    font-weight: 600;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

.section-title {
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
    text-align: center;
}

.section-title .subtitle {
    display: inline-block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    position: relative;
    padding-left: 50px;
    text-shadow: 0 0 10px var(--secondary-color);
}

.section-title .subtitle:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 40px;
    height: 2px;
    background: var(--secondary-color);
    box-shadow: 0 0 10px var(--secondary-color);
}

.about-content {
    position: relative;
    z-index: 1;
}

.about-content p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-primary);
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin: 35px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 10px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: var(--secondary-color);
}

.feature-item i {
    color: var(--secondary-color);
    margin-right: 15px;
    font-size: 1.5rem;
    filter: drop-shadow(0 0 8px var(--secondary-color));
    transition: var(--transition);
}

.feature-item:hover i {
    color: var(--accent-color);
    filter: drop-shadow(0 0 8px var(--accent-color));
    transform: scale(1.2);
}

.btn-primary {
    background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
    border: none;
    color: #fff;
    padding: 16px 38px;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 10px 25px rgba(0, 245, 255, 0.4);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--accent-color), var(--tertiary-color));
    transition: all 0.5s ease;
    opacity: 0;
    z-index: -1;
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(255, 64, 129, 0.6);
    color: #fff;
}

.btn-primary:hover::before {
    opacity: 1;
}

/* ===== Services Section ===== */
.services-section {
    position: relative;
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--footer-bg) 100%);
    overflow: hidden;
}

.services-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(0, 229, 255, 0.1) 1px, transparent 1px), 
                      radial-gradient(circle, rgba(255, 64, 129, 0.05) 2px, transparent 2px);
    background-size: 50px 50px, 100px 100px;
    background-position: 0 0, 25px 25px;
    opacity: 0.5;
    z-index: 0;
    animation: patternFloat 60s linear infinite;
}

@keyframes patternFloat {
    0% {
        background-position: 0 0, 25px 25px;
    }
    100% {
        background-position: 50px 50px, 75px 75px;
    }
}

.services-section .container {
    position: relative;
    z-index: 2;
}

.section-description {
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-primary);
}

/* Featured Services */
.featured-services-row {
    margin-bottom: 60px;
}

.featured-service-card {
    background: rgba(15, 30, 69, 0.7);
    backdrop-filter: var(--blur-effect);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: all 0.5s ease;
    border: 1px solid rgba(0, 229, 255, 0.1);
    height: 100%;
    z-index: 1;
}

.featured-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 229, 255, 0.4);
    border-color: rgba(0, 229, 255, 0.3);
}

.featured-service-content {
    padding: 40px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.featured-icon-wrapper {
    flex: 0 0 100px;
    margin-right: 30px;
}

.featured-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), 0 0 15px rgba(0, 229, 255, 0.5);
    transition: all 0.5s ease;
}

.featured-service-card:hover .featured-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 229, 255, 0.7);
    background: linear-gradient(135deg, var(--accent-color), var(--tertiary-color));
}

.featured-icon i {
    font-size: 3rem;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    transition: all 0.5s ease;
}

.featured-service-card:hover .featured-icon i {
    transform: scale(1.2);
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}

.featured-text {
    flex: 1;
}

.featured-text h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.featured-service-card:hover .featured-text h3 {
    color: var(--accent-color);
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
}

.featured-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.featured-service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
}

.feature {
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.feature i {
    color: var(--accent-color);
    margin-right: 10px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.featured-service-card:hover .feature {
    color: #fff;
}

.featured-service-card:hover .feature i {
    color: var(--tertiary-color);
    transform: scale(1.2);
}

.btn-service {
    background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-service:hover {
    background: linear-gradient(45deg, var(--accent-color), var(--tertiary-color));
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3), 0 0 15px rgba(0, 229, 255, 0.5);
    color: #fff;
}

.btn-service i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.btn-service:hover i {
    transform: translateX(5px);
}

.service-shape-1, .service-shape-2 {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.2) 0%, rgba(0, 229, 255, 0) 70%);
    z-index: 0;
}

.service-shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
}

.service-shape-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -100px;
    background: radial-gradient(circle, rgba(255, 64, 129, 0.2) 0%, rgba(255, 64, 129, 0) 70%);
}

/* Service Cards */
.services-grid {
    margin-bottom: 60px;
}

.service-card {
    position: relative;
    background: rgba(15, 30, 69, 0.5);
    backdrop-filter: var(--blur-effect);
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 229, 255, 0.3);
    border-color: rgba(0, 229, 255, 0.2);
}

.service-card-inner {
    padding: 35px 30px;
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.5s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1), 0 0 15px rgba(0, 229, 255, 0.3);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(10deg);
    background: linear-gradient(135deg, var(--accent-color), var(--tertiary-color));
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2), 0 0 20px rgba(0, 229, 255, 0.5);
}

.service-icon i {
    font-size: 2rem;
    color: #fff;
    transition: all 0.5s ease;
}

.service-card:hover .service-icon i {
    transform: scale(1.2);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.service-card:hover h3 {
    color: var(--accent-color);
    text-shadow: 0 0 8px rgba(0, 229, 255, 0.4);
}

.service-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: 25px;
    flex-grow: 1;
}

.read-more {
    color: var(--secondary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 0.95rem;
}

.read-more i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.read-more:hover {
    color: var(--accent-color);
    text-shadow: 0 0 8px rgba(0, 229, 255, 0.4);
}

.read-more:hover i {
    transform: translateX(5px);
}

.hover-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 229, 255, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.service-card:hover .hover-effect {
    opacity: 1;
}

/* Service CTA */
.service-cta {
    background: linear-gradient(135deg, rgba(15, 30, 69, 0.8) 0%, rgba(10, 14, 23, 0.8) 100%);
    border-radius: 20px;
    padding: 40px;
    margin-top: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 229, 255, 0.1);
}

.service-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(0, 229, 255, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 0;
}

.service-cta h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.service-cta p {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

.btn-cta {
    background: linear-gradient(45deg, var(--accent-color), var(--tertiary-color));
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), 0 0 15px rgba(255, 64, 129, 0.4);
}

.btn-cta:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 64, 129, 0.6);
    color: #fff;
}

@media (max-width: 991px) {
    .featured-service-content {
        flex-direction: column;
        padding: 30px;
    }
    
    .featured-icon-wrapper {
        margin-right: 0;
        margin-bottom: 25px;
    }
    
    .featured-service-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-cta {
        padding: 30px;
    }
    
    .service-cta h3 {
        font-size: 1.5rem;
    }
    
    .service-cta .col-lg-4 {
        margin-top: 20px;
        text-align: left !important;
    }
}

@media (max-width: 767px) {
    .featured-service-features {
        grid-template-columns: 1fr;
    }
    
    .service-cta {
        padding: 25px;
    }
    
    .service-cta h3 {
        font-size: 1.3rem;
    }
}

/* ===== Team Section ===== */
.team-section {
    position: relative;
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--footer-bg) 100%);
    overflow: hidden;
}

.team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(0, 245, 255, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 0;
}

.team-card {
    background: var(--glass-bg);
    backdrop-filter: var(--blur-effect);
    border-radius: 24px;
    padding: 30px;
    margin-bottom: 30px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--box-shadow);
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transform-style: preserve-3d;
}

.team-card::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    transform: rotate(45deg);
    z-index: -1;
    transition: all 0.8s ease;
}

.team-card:hover {
    transform: var(--card-hover-transform);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), var(--neon-glow);
    border-color: var(--secondary-color);
    border-width: 1.5px;
}

.team-card:hover::before {
    transform: rotate(45deg) translate(50%, 50%);
}

.team-img {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 25px;
    box-shadow: var(--box-shadow);
    transform-style: preserve-3d;
    transition: transform 0.5s ease;
}

.team-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
    opacity: 0;
    z-index: 1;
    transition: opacity 0.5s ease;
}

.team-card:hover .team-img::before {
    opacity: 0.7;
}

.team-img img {
    width: 100%;
    border-radius: 20px;
    transition: transform 0.5s ease;
}

.team-card:hover .team-img {
    transform: translateZ(30px);
}

.team-card:hover .team-img img {
    transform: scale(1.1);
}

.team-info {
    text-align: center;
    transform-style: preserve-3d;
}

.team-name {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--heading-color);
    transition: var(--transition);
    transform: translateZ(10px);
    font-weight: 700;
}

.team-card:hover .team-name {
    transform: translateZ(25px);
    color: var(--secondary-color);
    text-shadow: var(--neon-text-shadow);
}

.team-position {
    font-size: 1.1rem;
    color: var(--accent-color);
    margin-bottom: 20px;
    transition: var(--transition);
    transform: translateZ(5px);
    font-weight: 600;
}

.team-card:hover .team-position {
    transform: translateZ(15px);
    text-shadow: 0 0 10px var(--accent-color);
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    transform-style: preserve-3d;
    transform: translateZ(5px);
}

.team-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon {
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    border-radius: 30px;
    color: var(--text-primary);
    font-size: 18px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.whatsapp-icon {
    background-color: #25D366;
    color: white;
    font-weight: 600;
    gap: 10px;
}

.team-social a:hover {
    background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: transparent;
}

.team-card:hover .team-social {
    transform: translateZ(20px);
}

/* ===== Contact Section ===== */
.contact-section {
    position: relative;
    background: linear-gradient(135deg, var(--footer-bg) 0%, var(--dark-color) 100%);
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(255, 45, 149, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 0;
}

.contact-info {
    position: relative;
    z-index: 1;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    background: var(--glass-bg);
    backdrop-filter: var(--blur-effect);
    border-radius: 16px;
    padding: 25px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--box-shadow);
    transform-style: preserve-3d;
}

.contact-info-item:hover {
    transform: translateY(-10px) translateZ(20px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), var(--neon-glow);
    border-color: var(--secondary-color);
}

.contact-info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.contact-info-item:hover .contact-info-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 0 20px var(--accent-color);
    background: linear-gradient(45deg, var(--accent-color), var(--tertiary-color));
}

.contact-info-icon i {
    font-size: 1.8rem;
    color: #fff;
    transition: var(--transition);
}

.contact-info-item:hover .contact-info-icon i {
    transform: scale(1.2);
}

.contact-info-text {
    flex: 1;
}

.contact-info-text h4 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--heading-color);
    transition: var(--transition);
}

.contact-info-item:hover .contact-info-text h4 {
    color: var(--secondary-color);
    text-shadow: 0 0 10px var(--secondary-color);
}

.contact-info-text p, .contact-info-text a {
    font-size: 1.1rem;
    color: var(--text-primary);
    transition: var(--transition);
    line-height: 1.6;
}

.contact-info-item:hover .contact-info-text p,
.contact-info-item:hover .contact-info-text a {
    color: var(--text-primary);
}

.contact-form {
    background: var(--glass-bg);
    backdrop-filter: var(--blur-effect);
    border-radius: 24px;
    padding: 40px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--box-shadow);
    position: relative;
    z-index: 1;
    transform-style: preserve-3d;
}

.contact-form:hover {
    transform: translateY(-10px) translateZ(20px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3), var(--neon-glow);
    border-color: var(--secondary-color);
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form .form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    height: 55px;
    padding: 0 20px;
    color: var(--text-primary);
    transition: var(--transition);
}

.contact-form .form-control:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--secondary-color);
    box-shadow: 0 0 15px rgba(0, 245, 255, 0.3);
}

.contact-form textarea.form-control {
    height: 180px;
    padding: 20px;
    resize: none;
}

/* Harita Stilleri */
.contact-map {
    margin-top: 30px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    position: relative;
    z-index: 1;
}

.contact-map iframe {
    display: block;
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 15px;
}

.contact-form .btn-primary {
    width: 100%;
    height: 55px;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 2px;
    background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
    border: none;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 245, 255, 0.3);
    transition: var(--transition);
}

.contact-form .btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 45, 149, 0.4);
    background: linear-gradient(45deg, var(--accent-color), var(--tertiary-color));
}

/* ===== Footer ===== */
.footer {
    background: var(--footer-bg);
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(74, 0, 224, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 0;
}

.footer-widget {
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.footer-logo {
    margin-bottom: 25px;
}

.footer-logo img {
    height: 60px;
    filter: brightness(1.2) contrast(1.1) drop-shadow(0 0 15px rgba(0, 245, 255, 0.5));
    transition: var(--transition);
}

.footer-logo:hover img {
    transform: scale(1.05);
    filter: brightness(1.3) contrast(1.2) drop-shadow(0 0 20px rgba(255, 45, 149, 0.6));
}

.footer-text {
    color: var(--footer-text);
    margin-bottom: 25px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--footer-text);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social a:hover {
    background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), 0 0 15px var(--secondary-color);
    border-color: transparent;
}

.footer-widget-title {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.footer-widget-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, var(--secondary-color), var(--accent-color));
    border-radius: 3px;
    box-shadow: var(--neon-glow);
}

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

.footer-links li a {
    color: var(--footer-text);
    font-size: 1.1rem;
    transition: var(--transition);
    position: relative;
    padding-left: 20px;
    display: block;
}

.footer-links li a::before {
    content: '→';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--footer-link);
    transition: var(--transition);
}

.footer-links li a:hover {
    color: var(--footer-link-hover);
    transform: translateX(5px);
    text-shadow: 0 0 8px var(--footer-link-hover);
}

.footer-links li a:hover::before {
    color: var(--footer-link-hover);
    transform: translateX(3px);
}

.footer-contact-info li {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
}

.footer-contact-info li i {
    color: var(--footer-link);
    margin-right: 15px;
    font-size: 1.3rem;
    margin-top: 5px;
    transition: var(--transition);
}

.footer-contact-info li:hover i {
    color: var(--footer-link-hover);
    transform: scale(1.2);
    filter: drop-shadow(0 0 8px var(--footer-link-hover));
}

.footer-contact-info li p {
    color: var(--footer-text);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    transition: var(--transition);
}

.footer-contact-info li:hover p {
    color: var(--footer-link-hover);
}

.footer-newsletter p {
    color: var(--footer-text);
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.footer-newsletter-form {
    position: relative;
    margin-bottom: 20px;
}

.footer-newsletter-form input {
    width: 100%;
    height: 55px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 0 150px 0 25px;
    color: var(--footer-text);
    transition: var(--transition);
}

.footer-newsletter-form input:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--footer-link);
    box-shadow: 0 0 15px rgba(0, 245, 255, 0.3);
    outline: none;
}

.footer-newsletter-form button {
    position: absolute;
    right: 5px;
    top: 5px;
    height: 45px;
    background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
    border: none;
    border-radius: 50px;
    color: #fff;
    padding: 0 25px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.footer-newsletter-form button:hover {
    background: linear-gradient(45deg, var(--accent-color), var(--tertiary-color));
    box-shadow: 0 0 15px var(--accent-color);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--footer-text);
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

.copyright a {
    color: var(--footer-link);
    transition: var(--transition);
}

.copyright a:hover {
    color: var(--footer-link-hover);
    text-shadow: 0 0 8px var(--footer-link-hover);
}

/* ===== Harita Seçenekleri Modal Stilleri ===== */
#mapOptionsModal .modal-content {
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: none;
}

#mapOptionsModal .modal-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    background-color: var(--primary-color);
    color: white;
    border-radius: 15px 15px 0 0;
}

#mapOptionsModal .btn-close {
    color: white;
    filter: brightness(0) invert(1);
}

#mapOptionsModal .modal-body {
    padding: 20px;
}

#mapOptionsModal .btn {
    padding: 12px;
    border-radius: 10px;
    font-weight: 500;
    transition: all 0.3s ease;
}

#mapOptionsModal .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

#mapOptionsModal .btn-warning {
    background-color: #fc0;
    border-color: #fc0;
    color: #333;
}

#mapOptionsModal .btn-warning:hover {
    background-color: #ffb700;
    border-color: #ffb700;
}

#mapOptionsModal .btn i {
    margin-right: 8px;
}

/* ===== Back to Top Button ===== */
.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), 0 0 15px var(--secondary-color);
    border: none;
    cursor: pointer;
}

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

.back-to-top:hover {
    background: linear-gradient(45deg, var(--accent-color), var(--tertiary-color));
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 20px var(--accent-color);
}

/* ===== Responsive Styles ===== */
@media (max-width: 1199px) {
    h1 {
        font-size: 3.5rem;
    }
    
    h2 {
        font-size: 2.5rem;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .section-padding {
        padding: 100px 0;
    }
}

@media (max-width: 991px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .navbar-collapse {
        background: rgba(10, 14, 23, 0.95);
        backdrop-filter: var(--blur-effect);
        padding: 20px;
        border-radius: 10px;
        box-shadow: var(--box-shadow);
        border: 1px solid rgba(255, 255, 255, 0.08);
        margin-top: 15px;
    }
    
    .navbar-nav .nav-item {
        margin-left: 0;
        margin-bottom: 10px;
    }
    
    .about-img {
        margin-bottom: 40px;
    }
    
    .section-padding {
        padding: 80px 0;
    }
    
    .experience-badge {
        right: 0;
        bottom: 20px;
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 767px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-text {
        font-size: 1.1rem;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 30px 25px;
    }
    
    .contact-form {
        padding: 30px;
        margin-top: 40px;
    }
    
    .footer {
        padding: 60px 0 30px;
    }
}

@media (max-width: 575px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-text {
        font-size: 1rem;
    }
    
    .btn-primary {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
    
    .section-padding {
        padding: 50px 0;
    }
    
    .section-title .subtitle {
        font-size: 0.9rem;
        padding-left: 40px;
    }
    
    .section-title .subtitle:before {
        width: 30px;
    }
    
    .experience-badge {
        width: 100px;
        height: 100px;
        padding: 15px;
    }
    
    .experience-badge .number {
        font-size: 2rem;
    }
    
    .experience-badge .text {
        font-size: 0.8rem;
    }
    
    .service-icon {
        width: 80px;
        height: 80px;
    }
    
    .contact-info-item {
        padding: 20px;
    }
    
    .contact-info-icon {
        width: 50px;
        height: 50px;
        margin-right: 15px;
    }
    
    .contact-info-icon i {
        font-size: 1.5rem;
    }
    
    .footer-newsletter-form input {
        padding: 0 25px;
        height: 50px;
    }
    
    .footer-newsletter-form button {
        position: relative;
        right: 0;
        top: 10px;
        width: 100%;
        border-radius: 50px;
    }
}
.hero-title.test-primary {
    color: var(--primary-color) !important;
}
.hero-title.test-tertiary {
    color: var(--tertiary-color) !important;
}
.hero-title.test-white {
    color: #fff !important;
}

/* ===== Responsive Styles ===== */
@media (max-width: 1199px) {
    h1 {
        font-size: 3.5rem;
    }
    
    h2 {
        font-size: 2.5rem;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .section-padding {
        padding: 100px 0;
    }
}

@media (max-width: 991px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .navbar-collapse {
        background: rgba(10, 14, 23, 0.95);
        backdrop-filter: var(--blur-effect);
        padding: 20px;
        border-radius: 10px;
        box-shadow: var(--box-shadow);
        border: 1px solid rgba(255, 255, 255, 0.08);
        margin-top: 15px;
    }
    
    .navbar-nav .nav-item {
        margin-left: 0;
        margin-bottom: 10px;
    }
    
    .about-img {
        margin-bottom: 40px;
    }
    
    .section-padding {
        padding: 80px 0;
    }
    
    .experience-badge {
        right: 0;
        bottom: 20px;
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 767px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-text {
        font-size: 1.1rem;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 30px 25px;
    }
    
    .contact-form {
        padding: 30px;
        margin-top: 40px;
    }
    
    .footer {
        padding: 60px 0 30px;
    }
}

@media (max-width: 575px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-text {
        font-size: 1rem;
    }
    
    .btn-primary {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
    
    .section-padding {
        padding: 50px 0;
    }
    
    .section-title .subtitle {
        font-size: 0.9rem;
        padding-left: 40px;
    }
    
    .section-title .subtitle:before {
        width: 30px;
    }
    
    .experience-badge {
        width: 100px;
        height: 100px;
        padding: 15px;
    }
    
    .experience-badge .number {
        font-size: 2rem;
    }
    
    .experience-badge .text {
        font-size: 0.8rem;
    }
    
    .service-icon {
        width: 80px;
        height: 80px;
    }
    
    .contact-info-item {
        padding: 20px;
    }
    
    .contact-info-icon {
        width: 50px;
        height: 50px;
        margin-right: 15px;
    }
    
    .contact-info-icon i {
        font-size: 1.5rem;
    }
    
    .footer-newsletter-form input {
        padding: 0 25px;
        height: 50px;
    }
    
    .footer-newsletter-form button {
        position: relative;
        right: 0;
        top: 10px;
        width: 100%;
        border-radius: 50px;
    }
}

/* İletişim bölümündeki başlık üzerindeki çizgiyi kaldır */
#contact .section-title .subtitle:before {
    display: none;
}
