/* assets/css/kurumsal.css - NASIL ÇALIŞIR EKLENDİ */

:root {
    --primary-color: #FF6B6B;
    --primary-dark: #EE5253;
    --secondary-color: #2D3436;
    --text-color: #636E72;
    --bg-light: #F9F9F9;
    --white: #FFFFFF;
    --gradient: linear-gradient(135deg, #2D3436 0%, #1a252f 100%);
    --shadow-sm: 0 5px 15px rgba(0,0,0,0.05);
    --shadow-lg: 0 15px 30px rgba(0,0,0,0.1);
    --radius: 12px;
}

/* Genel Ayarlar */
body { font-family: 'Outfit', sans-serif; color: var(--secondary-color); line-height: 1.6; overflow-x: hidden; }
section { overflow: hidden; }
.section-padding { padding: 80px 0; }
.bg-light { background-color: var(--bg-light); }
.bg-dark { background: var(--gradient); color: var(--white); }
.text-white { color: var(--white) !important; }
.mb-4 { margin-bottom: 1.5rem; }
.opacity-75 { opacity: 0.75; }

/* Butonlar */
.btn { display: inline-block; padding: 12px 30px; border-radius: 50px; font-weight: 600; text-decoration: none; transition: 0.3s; cursor: pointer; border: 2px solid transparent; }
.btn-lg { padding: 15px 40px; font-size: 1.1rem; }
.btn-primary { background: var(--primary-color); color: var(--white); box-shadow: 0 10px 20px rgba(255, 107, 107, 0.3); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-3px); }
.btn-outline { border-color: var(--secondary-color); color: var(--secondary-color); }
.btn-outline:hover { background: var(--secondary-color); color: var(--white); }
.btn-outline-dark { border-color: #dfe6e9; color: var(--text-color); }
.btn-outline-dark:hover { border-color: var(--secondary-color); color: var(--secondary-color); }
.btn-outline-white { border-color: rgba(255,255,255,0.3); color: var(--white); }
.btn-outline-white:hover { background: var(--white); color: var(--secondary-color); }
.btn-block { display: block; width: 100%; text-align: center; }

/* Navbar */
.nav-kurumsal { 
    display: flex; justify-content: space-between; align-items: center; 
    padding: 15px 5%; position: fixed; width: 100%; top: 0; z-index: 1000; 
    background: rgba(255, 255, 255, 0.98); backdrop-filter: blur(10px); 
    box-shadow: 0 2px 20px rgba(0,0,0,0.05); transition: 0.3s;
}
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { color: var(--secondary-color); font-weight: 500; font-size: 0.95rem; }
.nav-links a:hover { color: var(--primary-color); }
.nav-buttons { display: flex; gap: 15px; margin-left: 20px; }
.menu-toggle { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
.menu-toggle .bar { width: 25px; height: 3px; background: var(--secondary-color); transition: 0.3s; }

/* Hero Section */
.hero { 
    background: var(--gradient); color: var(--white); 
    padding: 180px 0 100px 0; position: relative; 
}
.hero-content { display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.hero-text { flex: 1; }
.hero-text h1 { font-size: 3.5rem; line-height: 1.1; margin-bottom: 20px; font-weight: 800; }
.hero-text p { font-size: 1.2rem; opacity: 0.9; margin-bottom: 30px; max-width: 600px; font-weight: 300; }
.hero-badge { background: rgba(255,255,255,0.1); padding: 5px 15px; border-radius: 20px; font-size: 0.85rem; font-weight: 600; display: inline-block; margin-bottom: 20px; border: 1px solid rgba(255,255,255,0.2); }
.hero-btns { display: flex; gap: 15px; margin-bottom: 40px; }
.hero-image { flex: 1; text-align: center; }
.floating-img { max-width: 100%; animation: float 6s ease-in-out infinite; }
@keyframes float { 0% { transform: translateY(0px); } 50% { transform: translateY(-20px); } 100% { transform: translateY(0px); } }

/* --- NASIL ÇALIŞIR (YENİ BÖLÜM) --- */
.adimlar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}
.adim-kart {
    text-align: center;
    position: relative;
    padding: 20px;
    transition: 0.3s;
}
.adim-kart:hover { transform: translateY(-10px); }

/* Bağlantı Çizgisi (Sadece Masaüstü) */
.adimlar-grid::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 15%;
    width: 70%;
    height: 2px;
    background: repeating-linear-gradient(to right, #e0e0e0, #e0e0e0 10px, transparent 10px, transparent 20px);
    z-index: 0;
}

.adim-ikon {
    width: 100px;
    height: 100px;
    background: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin: 0 auto 25px auto;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.15);
    transition: 0.3s;
}
.adim-kart:hover .adim-ikon { background: var(--primary-color); color: var(--white); box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4); }

.adim-sayi {
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    height: 30px;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--white);
}
.adim-ikon .adim-sayi { top: 0; right: 0; } /* İkonun üzerine oturt */

.adim-kart h3 { font-size: 1.4rem; margin-bottom: 15px; font-weight: 700; }
.adim-kart p { color: var(--text-color); font-size: 1rem; }


/* Özellikler */
.bolum-baslik { text-align: center; max-width: 700px; margin: 0 auto 60px; }
.bolum-baslik h2 { font-size: 2.5rem; margin-bottom: 15px; color: var(--secondary-color); }
.bolum-baslik p { color: var(--text-color); font-size: 1.1rem; }

.ozellik-grid { 
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    gap: 25px; 
}

.ozellik-kart { 
    background: var(--white); padding: 30px 20px; border-radius: var(--radius); 
    border: 1px solid #f0f0f0; transition: 0.3s; 
    text-align: left; height: 100%;
    display: flex; flex-direction: column;
}
.ozellik-kart:hover { box-shadow: var(--shadow-lg); transform: translateY(-10px); border-color: var(--primary-color); }
.ozellik-ikon { width: 60px; height: 60px; background: rgba(255, 107, 107, 0.1); color: var(--primary-color); border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 20px; transition: 0.3s; flex-shrink: 0; }
.ozellik-kart:hover .ozellik-ikon { background: var(--primary-color); color: var(--white); }
.ozellik-kart h3 { margin-bottom: 10px; font-size: 1.2rem; }
.ozellik-kart p { color: var(--text-color); font-size: 0.9rem; line-height: 1.5; flex: 1; }

/* Fiyatlandırma & Toggle */
.pricing-toggle-container { display: flex; align-items: center; justify-content: center; gap: 15px; margin-top: 30px; background: var(--white); padding: 10px 20px; border-radius: 50px; display: inline-flex; box-shadow: var(--shadow-sm); }
.toggle-label { font-weight: 600; color: var(--text-color); transition: 0.3s; font-size: 0.95rem; }
.toggle-label.active { color: var(--secondary-color); }
.badge-save { background: #E3FBF4; color: #1DD1A1; padding: 2px 8px; border-radius: 10px; font-size: 0.75rem; margin-left: 5px; }
.switch { position: relative; display: inline-block; width: 50px; height: 26px; }
.switch input { opacity: 0; width: 0; height: 0; }
.slider { position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0; background-color: #ccc; transition: .4s; border-radius: 34px; }
.slider:before { position: absolute; content: ""; height: 18px; width: 18px; left: 4px; bottom: 4px; background-color: white; transition: .4s; border-radius: 50%; }
input:checked + .slider { background-color: var(--primary-color); }
input:checked + .slider:before { transform: translateX(24px); }

.paket-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; align-items: center; }
.paket-kart { background: var(--white); padding: 40px; border-radius: 20px; text-align: center; position: relative; border: 1px solid #f0f0f0; transition: 0.3s; }
.paket-kart:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.paket-kart.premium { border: 2px solid var(--primary-color); transform: scale(1.05); z-index: 2; box-shadow: 0 10px 40px rgba(255, 107, 107, 0.15); }
.paket-kart.premium:hover { transform: scale(1.05) translateY(-10px); }
.populer-badge { position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%); background: var(--primary-color); color: white; padding: 5px 20px; border-radius: 20px; font-size: 0.85rem; font-weight: 600; box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4); }
.price-container { margin: 25px 0; height: 80px; display: flex; align-items: center; justify-content: center; flex-direction: column; }
.price-value { font-size: 2.5rem; font-weight: 800; color: var(--secondary-color); }
.amount { font-size: 3rem; font-weight: 800; color: var(--secondary-color); }
.currency { font-size: 1.5rem; vertical-align: top; font-weight: 600; margin-right: 5px; }
.period { color: var(--text-color); font-weight: 500; }
.price-note { font-size: 0.85rem; color: #1DD1A1; font-weight: 600; margin-top: 5px; }
.paket-ozellikler { list-style: none; margin: 30px 0; text-align: left; }
.paket-ozellikler li { margin-bottom: 12px; color: var(--text-color); display: flex; align-items: center; gap: 10px; }
.paket-ozellikler li i { color: var(--primary-color); }

/* Referanslar Slider (Kayan) */
.slider-area { width: 100%; overflow: hidden; position: relative; padding: 40px 0; background: #fff; }
.slider-area::before, .slider-area::after { content: ""; position: absolute; width: 150px; height: 100%; z-index: 2; top: 0; }
.slider-area::before { left: 0; background: linear-gradient(to right, white 0%, transparent 100%); }
.slider-area::after { right: 0; background: linear-gradient(to left, white 0%, transparent 100%); }
.slide-track { display: flex; width: calc(200px * 18); animation: scroll 30s linear infinite; }
.slide-track:hover { animation-play-state: paused; }
.slide { width: 200px; padding: 0 30px; display: flex; align-items: center; justify-content: center; }
.slide img { width: 100%; max-height: 80px; object-fit: contain; filter: grayscale(100%); opacity: 0.6; transition: 0.3s; }
.slide img:hover { filter: grayscale(0); opacity: 1; transform: scale(1.1); }
@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(calc(-200px * 9)); } }

/* İletişim Form */
.iletisim-form-wrapper { background: var(--white); padding: 40px; border-radius: 20px; color: var(--secondary-color); box-shadow: 0 20px 50px rgba(0,0,0,0.2); }
.iletisim-form .form-group { margin-bottom: 20px; }
.iletisim-form label { display: block; margin-bottom: 8px; font-weight: 600; font-size: 0.9rem; }
.iletisim-form .form-control { width: 100%; padding: 12px 15px; border: 1px solid #eee; border-radius: 8px; background: #f9f9f9; transition: 0.3s; }
.iletisim-form .form-control:focus { border-color: var(--primary-color); outline: none; background: #fff; }
.contact-item { display: flex; align-items: center; gap: 20px; margin-bottom: 30px; }
.contact-item .icon { width: 50px; height: 50px; background: rgba(255,255,255,0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.contact-item h4 { margin: 0 0 5px; font-size: 1.1rem; }
.contact-item p { margin: 0; opacity: 0.8; }

/* Footer */
.site-footer { background: #1a252f; color: #bdc3c7; padding: 80px 0 30px 0; border-top: 5px solid var(--primary-color); }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.5fr; gap: 40px; padding-bottom: 50px; }
.footer-col h4 { color: #fff; margin-bottom: 25px; font-size: 1.1rem; font-weight: 600; position: relative; padding-bottom: 10px; }
.footer-col h4::after { content: ''; position: absolute; left: 0; bottom: 0; width: 30px; height: 2px; background: var(--primary-color); }
.footer-logo { height: 45px; filter: brightness(0) invert(1); margin-bottom: 20px; opacity: 0.9; }
.footer-desc { font-size: 0.9rem; line-height: 1.6; opacity: 0.7; margin-bottom: 20px; }
.footer-links ul { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: #bdc3c7; transition: 0.3s; display: inline-block; }
.footer-links a:hover { color: var(--primary-color); transform: translateX(5px); }
.footer-contact p { margin-bottom: 15px; display: flex; gap: 10px; font-size: 0.9rem; align-items: flex-start; }
.footer-contact i { color: var(--primary-color); margin-top: 5px; }
.newsletter-form { position: relative; margin-top: 15px; }
.newsletter-form input { width: 100%; padding: 12px 15px; border-radius: 5px; border: none; background: rgba(255,255,255,0.1); color: #fff; font-size: 0.9rem; }
.newsletter-form input:focus { background: rgba(255,255,255,0.2); }
.newsletter-form button { width: 100%; margin-top: 10px; padding: 10px; border-radius: 5px; border: none; background: var(--primary-color); color: #fff; font-weight: 600; cursor: pointer; transition: 0.3s; }
.newsletter-form button:hover { background: var(--primary-dark); }
.social-links { display: flex; gap: 10px; }
.social-links a { width: 35px; height: 35px; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; border-radius: 50%; color: #fff; transition: 0.3s; }
.social-links a:hover { background: var(--primary-color); transform: translateY(-3px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 30px; text-align: center; font-size: 0.85rem; opacity: 0.6; }

/* Responsive */
@media (max-width: 992px) {
    .nav-links { display: none; position: absolute; top: 100%; left: 0; width: 100%; background: var(--white); flex-direction: column; padding: 30px; box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
    .nav-links.active { display: flex; }
    .menu-toggle { display: flex; }
    .nav-buttons { margin: 20px 0 0 0; flex-direction: column; width: 100%; }
    .hero h1 { font-size: 2.5rem; }
    .hero-content { flex-direction: column; text-align: center; }
    .hero-btns { justify-content: center; }
    
    /* Grid Ayarları */
    .adimlar-grid { grid-template-columns: 1fr; gap: 30px; }
    .adimlar-grid::before { display: none; } /* Mobilde çizgiyi gizle */
    .ozellik-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-top { grid-template-columns: repeat(2, 1fr); gap: 30px; }
}

@media (max-width: 576px) {
    .ozellik-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
}