@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* Genel Stil Ayarları */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

:root {
    /* Modern Adobe Color Palette */
    --primary-color: #1A2F8A;
    --primary-hover: #0B1D6B;
    --primary-light: #2A3F9A;
    --primary-dark: #0A1A5C;
    --secondary-color: #7C3AED;
    --secondary-hover: #6D28D9;
    --accent-color: #10B981;
    --accent-light: #34D399;
    --accent-dark: #059669;
    --warning-color: #F59E0B;
    --error-color: #EF4444;
    --active-link: #1A2F8A;
    --text-light: #FFFFFF;
    --text-dark: #1F2937;
    --text-gray: #6B7280;
    --bg-light: #FFFFFF;
    --bg-dark: #1E293B;
    --section-bg: #F8FAFC;
    --border-color: #E5E7EB;
    --gradient-1: linear-gradient(135deg, #1A2F8A 0%, #7C3AED 50%, #10B981 100%);
    --gradient-2: linear-gradient(135deg, #1A2F8A 0%, #0B1D6B 100%);
    --gradient-3: linear-gradient(135deg, #7C3AED 0%, #6D28D9 100%);
    --gradient-4: linear-gradient(135deg, #10B981 0%, #059669 100%);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

body {
    font-family: 'Roboto', 'Inter', 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Top Bar */
.header-top {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: var(--text-light);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.header-contact {
    display: flex;
    gap: 30px;
    align-items: center;
}

.header-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    padding: 5px 10px;
    border-radius: 5px;
}

.header-contact-item:hover {
    color: var(--text-light);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.header-contact-item i {
    font-size: 14px;
    color: var(--text-light);
}

.header-social {
    display: flex;
    gap: 10px;
    align-items: center;
}

.header-social-link {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.header-social-link:hover {
    background: var(--accent-color);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 4px 10px rgba(78, 205, 196, 0.4);
}

.header-social-link.whatsapp:hover {
    background: #25D366;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.4);
}

/* Header */
.header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--text-light);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(11, 29, 107, 0.3);
    animation: slideIn 0.5s ease-out;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo-section {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo-section:hover .logo-link {
    transform: scale(1.05);
}

.logo {
    height: 65px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.site-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    justify-content: center;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-risk-header {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-risk-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(11, 29, 107, 0.3);
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
}

.btn-risk-header i {
    font-size: 16px;
}

.search-container {
    position: relative;
}

.search-toggle {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 18px;
}

.search-toggle:hover {
    background: var(--primary-light);
    border-color: var(--primary-light);
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(11, 29, 107, 0.4);
}

.search-box {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 10px;
    width: 350px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 1001;
    padding: 20px;
}

.search-box.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.search-form {
    display: flex;
    gap: 10px;
    align-items: center;
}

.search-input {
    flex: 1;
    padding: 12px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 15px;
    outline: none;
    transition: all 0.3s ease;
    color: var(--text-dark);
}

.search-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(11, 29, 107, 0.1);
}

.search-submit {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-1);
    border: none;
    border-radius: 10px;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.search-submit:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(11, 29, 107, 0.4);
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 20px;
    border-radius: 8px;
    position: relative;
    white-space: nowrap;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--accent-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 80%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-light);
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    min-width: 300px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    padding: 15px 0;
    margin-top: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 100;
    border: 1px solid rgba(11, 29, 107, 0.1);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #ffffff;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
    position: relative;
}

.dropdown-menu a::before {
    content: '';
    width: 4px;
    height: 0;
    background: var(--gradient-1);
    border-radius: 2px;
    transition: height 0.3s ease;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.dropdown-menu a:hover::before {
    height: 60%;
}

.dropdown-menu a:hover {
    background: linear-gradient(90deg, rgba(11, 29, 107, 0.1) 0%, transparent 100%);
    color: var(--primary-color);
    padding-left: 30px;
    transform: translateX(5px);
}

.mobile-menu-toggle {
    display: none;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--text-light);
    border-radius: 8px;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s ease;
    align-items: center;
    justify-content: center;
}

.mobile-menu-toggle:hover {
    background: var(--primary-light);
    border-color: var(--primary-light);
    transform: scale(1.05);
}

/* Slider */
.slider-container {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    margin-top: 0;
}

.slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-content {
    text-align: center;
    color: var(--text-light);
    z-index: 2;
    padding: 40px;
    background: rgba(11, 29, 107, 0.7);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    animation: fadeIn 1s ease-out;
    max-width: 800px;
}

.slide-content h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.slide-content p {
    font-size: 20px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.slider-dot.active {
    background: var(--accent-color);
    transform: scale(1.3);
    border-color: var(--text-light);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-light);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev {
    left: 30px;
}

.slider-arrow.next {
    right: 30px;
}

/* Hero Section */
.hero {
    position: relative;
    background: var(--gradient-1);
    color: var(--text-light);
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1576091160399-112ba8d25d1f?w=1920') center/cover;
    opacity: 0.2;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeIn 1s ease-out;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-light);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    animation: float 3s ease-in-out infinite;
}

.hero-subtitle {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--text-light);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--text-light);
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Butonlar */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    cursor: pointer;
    border: none;
    min-width: 44px;
    min-height: 44px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(11, 29, 107, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(11, 29, 107, 0.6);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.btn-secondary:hover {
    background: var(--text-light);
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Hizmetler Özet */
.services-preview {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f5f7fa 100%);
    position: relative;
}

.services-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(180deg, transparent, rgba(102, 126, 234, 0.05));
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
    color: var(--text-dark);
    animation: fadeIn 0.8s ease-out;
}

.section-subtitle {
    font-size: 18px;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: fadeIn 0.8s ease-out;
    height: 100%;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-3);
    opacity: 0.1;
    transition: left 0.5s ease;
}

.service-card-link:hover .service-card::before {
    left: 0;
}

.service-card-link:hover .service-card {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
}

.service-card-link:hover .service-icon {
    transform: rotate(360deg) scale(1.15);
    animation: none;
}

.service-card-link:hover .service-link {
    gap: 15px;
    color: var(--text-dark);
}

.service-card-link:hover .service-card h3 {
    color: var(--text-dark);
    transform: scale(1.05);
}

.service-image {
    width: 100%;
    height: 200px;
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card-link:hover .service-image img {
    transform: scale(1.1);
}

.service-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 20px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 36px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s ease-in-out infinite;
}

.service-card:nth-child(2) .service-icon {
    background: var(--gradient-2);
    box-shadow: 0 4px 15px rgba(245, 87, 108, 0.4);
}

.service-card:nth-child(3) .service-icon {
    background: var(--gradient-3);
    box-shadow: 0 4px 15px rgba(79, 172, 254, 0.4);
}

.service-card:nth-child(4) .service-icon {
    background: var(--gradient-4);
    box-shadow: 0 4px 15px rgba(67, 233, 123, 0.4);
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.service-card p {
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    margin-top: auto;
    padding-top: 15px;
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-card-link:hover .service-link i {
    transform: translateX(5px);
}

.text-center {
    text-align: center;
}

/* Neden Bizi Seçmelisiniz */
.why-us {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.why-us .container {
    max-width: 1600px;
}

.why-us .section-title {
    color: var(--text-dark);
    margin-bottom: 10px;
}

.why-us .section-subtitle {
    text-align: center;
    color: var(--text-dark);
    font-size: 18px;
    margin-top: 15px;
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.feature-item {
    text-align: center;
    padding: 55px 40px;
    background: #ffffff;
    border-radius: 12px;
    border: 2px solid #e8e9ea;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-item:hover::before {
    transform: scaleX(1);
}

.feature-item:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(11, 29, 107, 0.15);
}

.feature-icon-wrapper {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon-wrapper {
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(11, 29, 107, 0.3);
}

.feature-icon-wrapper i {
    font-size: 32px;
    color: #ffffff;
}

.feature-item h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 600;
}

.feature-item p {
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 15px;
    margin: 0;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: var(--text-light);
    padding: 50px 0 20px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: var(--text-light);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-section ul li a:hover {
    color: var(--text-light);
    padding-left: 5px;
}

.footer-section ul li a[data-service-preview] {
    position: relative;
}

.service-preview-tooltip {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(5px);
    width: 200px;
    height: 120px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 1000;
    overflow: hidden;
}

.service-preview-tooltip::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #fff;
}

.service-preview-tooltip img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-section ul li a:hover .service-preview-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.footer-section ul li i {
    margin-right: 10px;
    color: var(--text-light);
}

.footer-logo-section {
    display: flex;
    flex-direction: column;
}

.footer-logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.footer-logo-link:hover {
    transform: translateX(5px);
}

.footer-logo {
    height: 50px;
    width: auto;
}

.footer-site-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-light);
}

.footer-logo-section p {
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.btn-risk-footer {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: fit-content;
    margin-top: 10px;
}

.btn-risk-footer:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(11, 29, 107, 0.4);
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
}

.btn-risk-footer i {
    font-size: 18px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom a {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--text-light);
    text-decoration: underline;
    opacity: 0.9;
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 32px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    text-decoration: none;
    animation: pulse 2s ease-in-out infinite;
}

.whatsapp-button:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
    animation: none;
}

/* Hizmet Detay Sayfası */
.service-detail {
    padding: 60px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f5f7fa 100%);
}

.service-detail-header {
    text-align: center;
    margin-bottom: 50px;
}

.service-detail-header h1 {
    font-size: 42px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.service-detail-header p {
    font-size: 18px;
    color: var(--text-dark);
}

.service-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 50px;
    margin-bottom: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-item:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.service-item h2 {
    font-size: 32px;
    color: var(--text-dark);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--text-dark);
}

.service-item img {
    width: 100%;
    max-width: 700px;
    height: 450px;
    object-fit: cover;
    border-radius: 15px;
    margin: 30px 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.service-item img:hover {
    transform: scale(1.02);
}

.service-item p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.service-item ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.service-item ul li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 10px;
    position: relative;
    padding-left: 10px;
}

.service-item ul li::before {
    content: '✓';
    position: absolute;
    left: -20px;
    color: var(--success-color);
    font-weight: bold;
}

/* İstatistikler Bölümü */
.stats-section {
    padding: 80px 0;
    background: var(--gradient-1);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    animation: fadeIn 0.8s ease-out;
}

.stat-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-icon {
    font-size: 48px;
    color: #FFFFFF !important;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

.stat-icon i,
.stats-section .stat-icon,
.stats-section .stat-icon i,
.stat-item .stat-icon,
.stat-item .stat-icon i,
.stats-section .stat-item .stat-icon,
.stats-section .stat-item .stat-icon i,
.stats-section .stat-item .stat-icon.fas,
.stats-section .stat-item .stat-icon i.fas,
.stats-section .stat-item i.fas,
.stats-section i.fas,
.stats-section .fas {
    color: #FFFFFF !important;
    fill: #FFFFFF !important;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.stat-label {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* About Hero */
.about-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
}

.about-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: fadeIn 0.8s ease-out;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: contain;
    object-position: center;
    padding: 40px;
    background: #f8f9fa;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(11, 29, 107, 0.3), rgba(102, 126, 234, 0.3));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-image:hover .image-overlay {
    opacity: 1;
}

.about-text {
    animation: slideIn 0.8s ease-out;
}

.about-text h2 {
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
}

/* Misyon ve Vizyon */
.mission-vision {
    padding: 80px 0;
    background: linear-gradient(180deg, #f5f7fa 0%, #ffffff 100%);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
}

.mv-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    animation: fadeIn 0.8s ease-out;
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--gradient-1);
    transition: width 0.3s ease;
    z-index: 0;
}

.mv-card:hover::before {
    width: 100%;
    opacity: 0.05;
}

.mv-card > * {
    position: relative;
    z-index: 1;
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 36px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
}

.mv-card:hover .mv-icon {
    transform: rotate(360deg) scale(1.1);
}

.mission-card .mv-icon {
    background: var(--gradient-2);
    box-shadow: 0 4px 15px rgba(245, 87, 108, 0.4);
}

.vision-card .mv-icon {
    background: var(--gradient-3);
    box-shadow: 0 4px 15px rgba(79, 172, 254, 0.4);
}

.mv-card h2 {
    font-size: 32px;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.mv-card p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 15px;
}

/* Değerler Bölümü */
.values-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f5f7fa 100%);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
    animation: fadeIn 0.8s ease-out;
}

.value-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: var(--gradient-1);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50%;
}

.value-card:hover::before {
    opacity: 0.1;
}

.value-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
}

.value-card:nth-child(2) .value-icon {
    background: var(--gradient-2);
    box-shadow: 0 4px 15px rgba(245, 87, 108, 0.4);
}

.value-card:nth-child(3) .value-icon {
    background: var(--gradient-3);
    box-shadow: 0 4px 15px rgba(79, 172, 254, 0.4);
}

.value-card:nth-child(4) .value-icon {
    background: var(--gradient-4);
    box-shadow: 0 4px 15px rgba(67, 233, 123, 0.4);
}

.value-card:nth-child(5) .value-icon {
    background: var(--gradient-1);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.value-card:nth-child(6) .value-icon {
    background: var(--gradient-2);
    box-shadow: 0 4px 15px rgba(245, 87, 108, 0.4);
}

.value-card:hover .value-icon {
    transform: rotate(360deg) scale(1.15);
}

.value-card h3 {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.value-card:hover h3 {
    color: var(--text-dark);
}

.value-card p {
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 15px;
}

/* Sektörler Bölümü */
.sectors-section {
    padding: 80px 0;
    background: var(--gradient-1);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.sectors-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1552664730-d307ca884978?w=1920') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.sectors-section .section-title,
.sectors-section .section-subtitle {
    position: relative;
    z-index: 2;
    color: var(--text-light);
}

.sectors-section .section-title {
    color: var(--text-light);
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.sector-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px 20px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    animation: fadeIn 0.8s ease-out;
}

.sector-item:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.sector-item i {
    font-size: 48px;
    color: #FFFFFF !important;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.sector-item:hover i {
    transform: scale(1.2) rotate(5deg);
    color: var(--text-light);
}

.sector-item h3 {
    font-size: 20px;
    color: var(--text-light);
    font-weight: 600;
}

/* Neden Bizi Seçmelisiniz */
.why-choose-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f5f7fa 100%);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.why-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    animation: fadeIn 0.8s ease-out;
}

.why-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.why-item:hover::before {
    transform: scaleX(1);
}

.why-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.why-number {
    font-size: 72px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1;
    margin-bottom: 20px;
    opacity: 0.3;
    transition: all 0.3s ease;
}

.why-item:hover .why-number {
    opacity: 0.6;
    transform: scale(1.1);
}

.why-item h3 {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.why-item:hover h3 {
    color: var(--text-dark);
}

.why-item p {
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 15px;
}

/* Referanslar Bölümü */
.references-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f5f7fa 100%);
    overflow: hidden;
}

.references-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-top: 50px;
}

.references-track {
    display: flex;
    gap: 40px;
    animation: scrollReferences 30s linear infinite;
    width: fit-content;
}

.reference-item {
    flex-shrink: 0;
    width: 200px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    padding: 20px;
}

.reference-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.reference-logo {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reference-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
    transition: color 0.3s ease;
}

.reference-item:hover .reference-name {
    color: var(--text-dark);
}

@keyframes scrollReferences {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* FAQ Bölümü */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f0f4f8 100%);
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.faq-container {
    max-width: 1000px;
    margin: 50px auto 0;
}

.faq-item {
    background: #ffffff;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.faq-item:hover {
    box-shadow: 0 5px 25px rgba(11, 29, 107, 0.15);
    transform: translateX(5px);
}

.faq-item.active {
    border-left-color: var(--primary-color);
    box-shadow: 0 5px 25px rgba(11, 29, 107, 0.2);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    background: #ffffff;
    position: relative;
}

.faq-question::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary-color);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::before {
    transform: scaleY(1);
}

.faq-question:hover {
    background: linear-gradient(90deg, rgba(11, 29, 107, 0.03) 0%, #ffffff 100%);
}

.faq-question h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin: 0;
    font-weight: 600;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
}

.faq-question h3::before {
    content: '?';
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
}

.faq-question:hover h3 {
    color: var(--text-dark);
}

.faq-item.active .faq-question h3 {
    color: var(--text-dark);
}

.faq-question i {
    font-size: 18px;
    color: var(--text-dark);
    transition: all 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    background: var(--text-dark);
    color: #ffffff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 30px;
    background: #f8f9fa;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 25px 30px;
}

.faq-answer p {
    color: var(--text-dark);
    line-height: 1.9;
    font-size: 16px;
    margin: 0;
    position: relative;
    padding-left: 20px;
}

.faq-answer p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* Risk Analizi Talep Formu */
.risk-analysis-form-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f5f7fa 0%, #ffffff 100%);
}

.risk-analysis-form-section .form-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.risk-analysis-form-section h2 {
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 10px;
    text-align: center;
    font-weight: 700;
}

.risk-analysis-form-section .form-subtitle {
    text-align: center;
    color: var(--text-dark);
    font-size: 16px;
    margin-bottom: 40px;
}

.risk-analysis-form .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.risk-analysis-form .form-column {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.risk-analysis-form .form-column-full {
    grid-column: 1 / -1;
}

.risk-analysis-form .form-group {
    display: flex;
    flex-direction: column;
}

.risk-analysis-form .form-group label {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.risk-analysis-form .form-group input,
.risk-analysis-form .form-group select,
.risk-analysis-form .form-group textarea {
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #f8f9fa;
    color: var(--text-dark);
}

.risk-analysis-form .form-group input:focus,
.risk-analysis-form .form-group select:focus,
.risk-analysis-form .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(11, 29, 107, 0.1);
}

.risk-analysis-form .form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.risk-analysis-form .form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.form-submit-wrapper {
    text-align: center;
    margin-top: 30px;
}

.btn-risk-submit {
    background: #000000;
    color: #ffffff;
    border: none;
    padding: 18px 50px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-risk-submit:hover {
    background: #333333;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.btn-risk-submit i {
    font-size: 16px;
}

/* Hakkımızda ve İletişim Sayfaları */
.page-header {
    background: var(--gradient-1);
    color: var(--text-light);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1552664730-d307ca884978?w=1920') center/cover;
    opacity: 0.2;
    z-index: 1;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: var(--text-light);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.page-header p {
    font-size: 20px;
    opacity: 0.95;
    color: var(--text-light);
    position: relative;
    z-index: 2;
}

.page-content {
    padding: 60px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f5f7fa 100%);
}

.content-section {
    max-width: 900px;
    margin: 0 auto;
}

.content-section h2 {
    font-size: 32px;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.content-section p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
}

/* İletişim Bilgileri Bölümü */
.contact-info-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f5f7fa 100%);
}

.contact-intro {
    text-align: center;
    margin-bottom: 50px;
}

.contact-intro h2 {
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.contact-intro p {
    font-size: 18px;
    color: var(--text-dark);
    max-width: 700px;
    margin: 0 auto;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.contact-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
    animation: fadeIn 0.8s ease-out;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-1);
    opacity: 0.1;
    transition: left 0.5s ease;
}

.contact-card:hover::before {
    left: 0;
}

.contact-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.contact-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 36px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
}

.contact-card:nth-child(2) .contact-icon {
    background: var(--gradient-2);
    box-shadow: 0 4px 15px rgba(245, 87, 108, 0.4);
}

.contact-card:nth-child(3) .contact-icon {
    background: var(--gradient-3);
    box-shadow: 0 4px 15px rgba(79, 172, 254, 0.4);
}

.contact-card:nth-child(4) .contact-icon {
    background: linear-gradient(135deg, #25D366, #128C7E);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.contact-card:hover .contact-icon {
    transform: rotate(360deg) scale(1.15);
}

.contact-card h3 {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.contact-card:hover h3 {
    color: var(--text-dark);
}

.contact-main {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.contact-sub {
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.contact-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    background: var(--gradient-1);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.contact-card:nth-child(2) .contact-action {
    background: var(--gradient-1);
}

.contact-card:nth-child(3) .contact-action {
    background: var(--gradient-1);
}

.contact-card:nth-child(4) .contact-action {
    background: var(--gradient-1);
}

.contact-action:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    gap: 12px;
}

/* İletişim Formu Bölümü */
.contact-form-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f5f7fa 0%, #ffffff 100%);
}

.contact-form-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: start;
}

.form-container h2 {
    font-size: 32px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.form-description {
    color: var(--text-dark);
    margin-bottom: 30px;
    font-size: 16px;
}

.contact-form {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 15px;
}

.form-group label i {
    color: var(--primary-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #ffffff;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(11, 29, 107, 0.1);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-submit-btn {
    width: 100%;
    padding: 16px;
    font-size: 18px;
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.form-submit-btn i {
    margin: 0;
}

.form-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-risk-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.form-message {
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 500;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    animation: slideDown 0.3s ease forwards;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-message-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-message i {
    font-size: 20px;
}

.map-container {
    position: sticky;
    top: 100px;
}

.map-container h2 {
    font-size: 32px;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.map-wrapper {
    height: 600px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.map-wrapper:hover {
    transform: scale(1.02);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Çalışma Saatleri ve Sosyal Medya */
.working-hours-section {
    padding: 80px 0;
    background: var(--gradient-1);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.working-hours-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

.hours-social-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.working-hours-card,
.social-media-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 50px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.working-hours-card:hover,
.social-media-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
}

.hours-icon,
.social-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 36px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.working-hours-card:hover .hours-icon,
.social-media-card:hover .social-icon {
    transform: rotate(360deg) scale(1.1);
    background: rgba(255, 255, 255, 0.3);
}

.working-hours-card h2,
.social-media-card h2 {
    font-size: 28px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.social-media-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.hours-list {
    margin-bottom: 30px;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hour-item:last-child {
    border-bottom: none;
}

.hour-item .day {
    color: var(--text-light);
    font-weight: 500;
}

.hour-item .time {
    color: var(--text-light);
    font-weight: 600;
}

.hour-item .time.closed {
    color: rgba(255, 255, 255, 0.6);
}

.emergency-note {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.emergency-note i {
    font-size: 24px;
    color: var(--primary-light);
}

.emergency-note p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.social-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.social-link.facebook:hover {
    background: #1877F2;
    border-color: #1877F2;
}

.social-link.instagram:hover {
    background: linear-gradient(135deg, #E4405F, #FCAF45);
    border-color: #E4405F;
}

.social-link.linkedin:hover {
    background: #0077B5;
    border-color: #0077B5;
}

.social-link.whatsapp:hover {
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-color: #25D366;
}

.social-link i {
    font-size: 20px;
}

.social-link span {
    font-weight: 500;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(11, 29, 107, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .header-top {
        display: none;
    }

    .header-contact {
        flex-direction: column;
        gap: 10px;
    }

    .search-box {
        width: calc(100vw - 40px);
        right: -20px;
    }

    .header-actions {
        gap: 10px;
    }

    .btn-risk-header {
        padding: 10px 15px;
        font-size: 13px;
    }

    .btn-risk-header span {
        display: none;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-hero {
        grid-template-columns: 1fr;
    }

    .about-image img {
        height: 300px;
        object-fit: contain;
        padding: 30px;
    }

    .mv-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .sectors-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-form-wrapper {
        grid-template-columns: 1fr;
    }

    .hours-social-wrapper {
        grid-template-columns: 1fr;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, var(--primary-color) 0%, #1A2F8A 100%);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-link {
        width: 100%;
        padding: 15px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .dropdown-menu {
        position: static;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transform: none;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.1);
        margin-top: 0;
        margin-left: 20px;
        padding: 0;
        transition: all 0.3s ease;
    }
    
    .dropdown.active .dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: 500px;
        padding: 15px 0;
    }

    .dropdown-menu::before {
        display: none;
    }

    .dropdown-menu a {
        color: var(--text-light);
    }

    .mobile-menu-toggle {
        display: block;
    }

    .slider-container {
        height: 400px;
    }

    .slide-content h2 {
        font-size: 32px;
    }

    .slide-content p {
        font-size: 16px;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .slider-arrow.prev {
        left: 10px;
    }

    .slider-arrow.next {
        right: 10px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 22px;
    }

    .section-title {
        font-size: 28px;
    }

    .services-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }

    .service-item {
        padding: 30px 20px;
    }

    .service-item h2 {
        font-size: 24px;
    }

    .whatsapp-button {
        width: 50px;
        height: 50px;
        font-size: 28px;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 992px) {
    .why-us .container {
        max-width: 1200px;
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }

    .services-preview,
    .why-us {
        padding: 50px 0;
    }
    
    .services-grid {
        grid-template-columns: repeat(8, 1fr);
        gap: 10px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
    }
    
    .services-grid::-webkit-scrollbar {
        height: 6px;
    }
    
    .services-grid::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }
    
    .services-grid::-webkit-scrollbar-thumb {
        background: var(--primary-color);
        border-radius: 10px;
    }
    
    .service-card {
        min-width: 140px;
    }

    .why-us .container {
        max-width: 100%;
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .feature-item {
        padding: 15px 10px;
    }
    
    .feature-item h3 {
        font-size: 12px;
        margin-bottom: 6px;
    }
    
    .feature-item p {
        font-size: 11px;
        line-height: 1.4;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .feature-icon-wrapper {
        width: 40px;
        height: 40px;
        margin-bottom: 8px;
    }

    .feature-icon-wrapper i {
        font-size: 20px;
    }

    .slider-container {
        height: 300px;
    }

    .about-hero {
        grid-template-columns: 1fr;
    }

    .about-image img {
        height: 250px;
        object-fit: contain;
        padding: 20px;
    }

    .sectors-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .slide-content {
        padding: 20px;
    }

    .reference-item {
        width: 150px;
        height: 100px;
    }

    .reference-name {
        font-size: 14px;
    }

    .contact-cards {
        grid-template-columns: 1fr;
    }

    .risk-analysis-form .form-grid {
        grid-template-columns: 1fr;
    }

    .risk-analysis-form-section .form-wrapper {
        padding: 30px 20px;
    }

    .risk-analysis-form-section h2 {
        font-size: 28px;
    }

    .contact-form-wrapper {
        grid-template-columns: 1fr;
    }

    .map-container {
        position: static;
    }

    .map-wrapper {
        height: 400px;
    }

    .hours-social-wrapper {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .slide-content h2 {
        font-size: 24px;
    }
    
    /* Footer tooltip mobilde gizle */
    .service-preview-tooltip {
        display: none;
    }
}

/* En güçlü kural - İstatistik ikonları için beyaz renk */
.stats-section .stat-item .stat-icon,
.stats-section .stat-item .stat-icon i,
.stats-section .stat-item .stat-icon i.fas,
.stats-section .stat-item .stat-icon i.fa-users,
.stats-section .stat-item .stat-icon i.fa-user-md,
.stats-section .stat-item .stat-icon i.fa-briefcase,
.stats-section .stat-item .stat-icon i.fa-award {
    color: #FFFFFF !important;
    fill: #FFFFFF !important;
    -webkit-text-fill-color: #FFFFFF !important;
}

/* Sektörler bölümü ikonları için beyaz renk */
.sectors-section .sector-item i,
.sectors-section .sector-item i.fas,
.sectors-section .sector-item i.fa-industry,
.sectors-section .sector-item i.fa-hard-hat,
.sectors-section .sector-item i.fa-hospital,
.sectors-section .sector-item i.fa-graduation-cap,
.sectors-section .sector-item i.fa-truck,
.sectors-section .sector-item i.fa-bolt,
.sectors-section .sector-item i.fa-shopping-cart,
.sectors-section .sector-item i.fa-utensils {
    color: #FFFFFF !important;
    fill: #FFFFFF !important;
    -webkit-text-fill-color: #FFFFFF !important;
}
