/* ===== GENEL STİLLER ve RESET ===== */
:root {
    --primary-red: #E41E26;
    --dark-gray: #212121;
    --light-gray: #f5f5f5;
    --text-color: #333;
    --white: #FFFFFF;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Roboto', sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text-color); line-height: 1.6; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
h1, h2, h3 { font-family: var(--font-heading); color: var(--dark-gray); margin-bottom: 1rem; }
h1 { font-size: 2.8rem; } h2 { font-size: 2.2rem; } h3 { font-size: 1.5rem; }
.text-primary { color: var(--primary-red); }

/* ===== NAVİGASYON BARI ===== */
.navbar { background-color: var(--white); padding: 1rem 0; border-bottom: 1px solid #ddd; position: sticky; top: 0; z-index: 1000; }
.navbar .container { display: flex; justify-content: space-between; align-items: center; }
.navbar .logo img { height: 45px; display: block; }
.nav-main { display: flex; align-items: center; gap: 2rem;  }
.navbar .nav-links ul { list-style: none; display: flex; gap: 1.5rem; }
.navbar .nav-links a { text-decoration: none; color: var(--text-color); font-weight: 500; transition: color 0.3s; position: relative; padding-bottom: 5px; }
.navbar .nav-links a::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 0; height: 2px; background-color: var(--primary-red); transition: width 0.3s ease-out; }
.navbar .nav-links a:hover { color: var(--dark-gray); }
.navbar .nav-links a:hover::after { width: 100%; }
.navbar .nav-links a.active {color: var(--primary-red);}
.navbar .nav-links a.active::after {width: 100%;}
.menu-toggle { display: none; background: none; border: 2px solid var(--dark-gray); border-radius: 5px; width: 40px; height: 40px; font-size: 1.5rem; cursor: pointer; color: var(--dark-gray); transition: background-color 0.3s, color 0.3s; }
.menu-toggle:hover { background-color: var(--dark-gray); color: var(--white); }
.cta-button { background-color: var(--primary-red); color: var(--white); padding: 0.8rem 1.5rem; text-decoration: none; border-radius: 5px; font-weight: bold; transition: transform 0.3s, box-shadow 0.3s; display: inline-block; }
.cta-button:hover { transform: scale(1.05) translateY(-3px); box-shadow: 0 7px 20px rgba(0,0,0,0.25); }
.nav-contact-button { background-color: var(--primary-red); color: var(--white); padding: 0.6rem 1.2rem; border-radius: 5px; text-decoration: none; font-weight: 500; display: flex; align-items: center; gap: 8px; transition: background-color 0.3s, transform 0.3s; }
.nav-contact-button:hover { background-color: #a1151b; transform: scale(1.05); color: var(--white); }
.phone-link { display: inline-flex; align-items: center; gap: 8px; background-color: var(--primary-red); color: var(--white); padding: 0.7rem 1.5rem; border-radius: 8px; text-decoration: none; font-weight: 500; font-size: 1rem; transition: background-color 0.3s; }
.phone-link:hover { background-color: #a1151b; color: var(--white); }
.whatsapp-link { display: inline-flex; align-items: center; gap: 8px; background-color: #25D366; color: var(--white); padding: 0.7rem 1.5rem; border-radius: 8px; text-decoration: none; font-weight: 500; font-size: 1rem; transition: background-color 0.3s; margin-top: 10px; }
.whatsapp-link:hover { background-color: #128C7E; color: var(--white); }
.contact-info a { color: var(--text-color); text-decoration: none; font-weight: normal; transition: color 0.3s; }
.contact-info a:hover { color: var(--primary-red); text-decoration: underline; }
.contact-info .social-icon { color: var(--primary-red); font-size: 1.5rem; margin-top: 5px; }

/* ===== ANA SAYFA BÖLÜMLERİ ===== */
.hero { color: var(--white); min-height: 80vh; display: flex; align-items: center; text-align: center; padding: 4rem 0; position: relative; overflow: hidden; }
.hero h1 { color: var(--white); }
.hero p { font-size: 1.2rem; max-width: 600px; margin: 1rem auto; }
.hero-buttons { margin-top: 2rem; }
.cta-button.secondary { background-color: transparent; border: 2px solid var(--white); margin-left: 1rem; }
.solutions, .app-showcase, .video-showcase, .testimonial { padding: 4rem 20px; }
.solutions, .video-showcase, .testimonial { background-color: var(--light-gray); text-align: center; }
.testimonial { overflow: hidden; }
.solutions-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-top: 2rem; text-align: left; }
.solution-card { background-color: var(--white); padding: 2rem; border: 1px solid #ddd; border-radius: 8px; }
.icon { font-size: 3rem; color: var(--primary-red); margin-bottom: 1rem; transition: transform 0.3s ease-in-out; }
.solution-card:hover .icon { transform: scale(1.1) rotate(10deg); }
.video-wrapper { position: relative; padding-bottom: 30%; height: 0; overflow: hidden; max-width: 750px; margin: 0 auto; border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.video-wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.app-showcase .container { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.app-visual img { width: 100%; height: auto; display: block; border-radius: 8px; }
.app-details ul { list-style: none; margin: 1.5rem 0; }
.app-details ul li { padding: 0.5rem 0; font-size: 1.1rem; display: flex; align-items: center; gap: 10px; }
.app-details ul li .fa-solid { color: var(--primary-red); }
.app-note { font-style: italic; color: #777; margin-bottom: 2rem; }
.testimonial-card { background-color: var(--white); padding: 2rem; border-radius: 16px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); text-align: center; position: relative; overflow: hidden; width: 100%; height: 100%; }
.testimonial-card::before { content: "\f10d"; font-family: "Font Awesome 6 Free"; font-weight: 900; position: absolute; top: 15px; left: 20px; font-size: 3rem; color: var(--primary-red); opacity: 0.1; }
.testimonial h2 { color: var(--dark-gray); margin-bottom: 2rem; text-align: center; }
.testimonial blockquote { font-size: 1.1rem; font-style: italic; color: #555; margin: 1rem auto; border-left: none; padding-left: 0; max-width: 90%; position: relative; z-index: 2; }
.testimonial cite { display: block; margin-top: 1rem; font-size: 1rem; font-weight: bold; color: var(--dark-gray); position: relative; z-index: 2; }

/* ===== DİĞER SAYFALAR İÇİN BÖLÜMLER (HAKKIMIZDA, İLETİŞİM, ÇÖZÜMLER) ===== */
.page-header { background-color: var(--dark-gray); color: var(--white); padding: 4rem 20px; text-align: center; }
.page-header h1 { color: var(--white); }
.about-content, .contact-section, .team-section { padding: 4rem 20px; }
.mission-vision { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 3rem; }
.mission-vision .card { background: var(--light-gray); padding: 2rem; border-radius: 8px; }
.team-section { background-color: var(--light-gray); }
.team-section h2 { text-align: center; margin-bottom: 3rem; }
.team-grid-new { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; max-width: 900px; margin: 0 auto; }
.team-card { background-color: var(--white); border-radius: 16px; padding: 2rem; text-align: center; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05); transition: transform 0.3s, box-shadow 0.3s; }
.team-card:hover { transform: translateY(-10px); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); }
.team-photo { margin: 0 auto 1.5rem auto; width: 180px; height: 180px; border-radius: 50%; overflow: hidden; border: 5px solid var(--white); box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); }
.team-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.team-card:hover .team-photo { border-color: var(--primary-red); box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2); transform: scale(1.02); }
.team-role { font-size: 0.9rem; color: #888; margin-bottom: 0.25rem; }
.team-name { font-size: 1.4rem; margin-bottom: 0.5rem; }
.team-info { font-size: 1rem; color: #555; margin-bottom: 1.5rem; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 3rem; }
.contact-info ul { list-style: none; margin-top: 2rem; }
.contact-info li { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 1.5rem; font-size: 1.1rem; }
.contact-info .fa-solid, .contact-info .fa-brands { color: var(--primary-red); font-size: 1.5rem; margin-top: 5px; }
.form-group { margin-bottom: 1.5rem; }
.contact-form label { display: block; margin-bottom: 0.5rem; font-weight: 500; }
.contact-form input, .contact-form textarea { width: 100%; padding: 0.8rem; border: 1px solid #ccc; border-radius: 5px; font-family: var(--font-body); font-size: 1rem; }
.contact-form button { border: none; cursor: pointer; width: 100%; }
.map-section { padding: 4rem 20px; background-color: var(--light-gray); }
.map-title { text-align: center; margin-bottom: 2rem; font-size: 2.2rem; }
.map-container { width: 100%; height: 450px; border-radius: 8px; overflow: hidden; box-shadow: 0 5px 20px rgba(0,0,0,0.1); border: 1px solid #ddd; }
.solutions-page-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.solution-item { display: grid; grid-template-columns: 1fr 1.5fr; gap: 3rem; align-items: center; padding: 4rem 0; border-bottom: 1px solid var(--light-gray); }
.solution-item:nth-child(even) { grid-template-columns: 1.5fr 1fr; }
.solution-item:nth-child(even) .solution-image { order: 2; }
.solution-item:last-child { border-bottom: none; }
.solution-image { text-align: center; }
.solution-image img { max-width: 100%; height: auto; border-radius: 8px; box-shadow: 0 5px 20px rgba(0,0,0,0.1); }
.solution-text h3 { color: var(--primary-red); }
.solution-text ul { list-style: none; margin-bottom: 2rem; }
.solution-text ul li { display: flex; align-items: center; gap: 10px; margin-bottom: 0.5rem; }
.solution-text ul li .fa-solid { color: var(--primary-red); }

/* ===== FOOTER ===== */
.footer { background-color: #212121; color: #ccc; padding: 3rem 20px 1.5rem 20px; font-size: 0.95rem; line-height: 1.8; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 3rem; margin-bottom: 2rem; }
.footer h3 { font-family: var(--font-heading); color: var(--white); font-size: 1.2rem; margin-bottom: 1rem; }
.footer-about p { max-width: 350px; color: #aaa; }
.footer-socials { margin-top: 1rem; display: flex; gap: 1.5rem; }
.footer-socials a { color: #ccc; text-decoration: none; transition: color 0.3s; }
.footer-socials a:hover { color: var(--primary-red); }
.social-link-item { display: flex; flex-direction: column; align-items: center; }
.social-link-item span { font-size: 0.75rem; color: #888; margin-top: 4px; font-weight: 500; }
.social-link-item .fa-brands { font-size: 1.8rem; }
.footer-contact ul { list-style: none; padding: 0; }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 0.8rem; }
.footer-contact i { color: var(--primary-red); margin-top: 5px; }
.footer-contact a { color: #ccc; text-decoration: none; transition: color 0.3s; }
.footer-contact a:hover { color: var(--white); }
.footer-divider { border: none; height: 1px; background-color: #444; margin: 0 auto 1.5rem auto; }
.footer-bottom { text-align: center; font-size: 0.85rem; color: #888; }

/* ===== YARDIMCI ÖĞELER (SCROLL TOP, SLIDERS) ===== */
.scroll-top-btn { position: fixed; bottom: 20px; right: 20px; width: 50px; height: 50px; background-color: var(--primary-red); color: var(--white); border-radius: 50%; text-align: center; font-size: 1.5rem; line-height: 50px; cursor: pointer; z-index: 1000; opacity: 0; visibility: hidden; transform: translateY(20px); transition: opacity 0.3s, visibility 0.3s, transform 0.3s; box-shadow: 0 4px 10px rgba(0,0,0,0.2); }
.scroll-top-btn.show { opacity: 1; visibility: visible; transform: translateY(0); }
.hero-slider { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
.hero-slide { background-size: cover; background-position: center; }
.hero-slide::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3)); }
.hero .container { position: relative; z-index: 2; }
.my-testimonials .swiper { width: 100%; padding-top: 20px; padding-bottom: 50px; }
.my-testimonials .swiper-slide { background-position: center; background-size: cover; width: 60%; }
.my-testimonials .swiper-slide-shadow-left, .my-testimonials .swiper-slide-shadow-right { background-image: none; }
.my-testimonials .swiper-pagination-bullet-active { background-color: var(--primary-red); }
.my-testimonials .swiper-button-next, .my-testimonials .swiper-button-prev { color: var(--primary-red); }

/* ===== RESPONSIVE MEDIA SORGULARI ===== */
@media (max-width: 992px) { h1 { font-size: 2.5rem; } h2 { font-size: 2rem; } .solutions-grid-4 { grid-template-columns: repeat(2, 1fr); } .nav-main { display: none; } }
@media (max-width: 768px) {
    .container { padding: 0 15px; }
    .menu-toggle { display: flex; align-items: center; justify-content: center; }
    .nav-main { display: none; position: absolute; top: 70px; left: 0; width: 100%; background-color: var(--white); box-shadow: 0 4px 10px rgba(0,0,0,0.1); gap: 0; flex-direction: column; padding-bottom: 1rem;  }
    .nav-main.active { display: flex; } .navbar .nav-links ul { flex-direction: column; width: 100%; gap: 0; }
    .navbar .nav-links li { padding: 1rem 0; border-bottom: 1px solid var(--light-gray); text-align: center; width: 100%; }
    .nav-contact-button { display: flex; margin: 1rem auto 0 auto; width: fit-content; }
    .hero { min-height: 60vh; }
    .hero-buttons { display: flex; flex-direction: column; gap: 1rem; align-items: center; }
    .cta-button.secondary { margin-left: 0; }
    .app-showcase .container, .mission-vision, .contact-grid, .team-grid-new, .solution-item, .solution-item:nth-child(even), .footer-grid { grid-template-columns: 1fr; }
    .solution-item:nth-child(even) .solution-image { order: 0; }
    .app-showcase .app-visual { order: -1; }
	.video-wrapper {padding-bottom: 75%;}
    .solutions, .app-showcase, .video-showcase, .testimonial, .about-content, .contact-section, .team-section, .map-section { padding: 3rem 15px; }
    .my-testimonials .swiper-slide { width: 80%; }
    .footer-about p { max-width: none; }
}
@media (max-width: 576px) { 
    h1 { font-size: 2rem; } h2 { font-size: 1.8rem; } h3 { font-size: 1.3rem; } 
    .solutions-grid-4 { grid-template-columns: 1fr; } 
    .testimonial blockquote { font-size: 1.1rem; }
    .map-title { font-size: 1.8rem; }
}
#map-location { scroll-margin-top: 100px; }

/* ======================================== */
/* YENİ EKLENEN STİLLER */
/* ======================================== */

/* ===== FOOTER GİZLİLİK POLİTİKASI LİNKİ ===== */
.footer-bottom p a {
    transition: color 0.3s ease-in-out, text-decoration 0.3s ease-in-out;
}

.footer-bottom p a:hover {
    color: var(--primary-red) !important;
    text-decoration: underline !important;
}

/* ===== İÇERİK SAYFASI İÇİN GENEL STİLLER ===== */
/* Sayfa içi başlıklar için stil (h2) */
.about-content h2 {
    position: relative;
    padding-bottom: 10px;
    margin-top: 40px;
    margin-bottom: 20px;
}

/* Başlıkların altına kırmızı çizgi ekler */
.about-content h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-red);
    border-radius: 5px;
}

/* İkonlu listeler için stil */
.styled-list {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
    margin-bottom: 20px;
}

.styled-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    line-height: 1.6;
}

.styled-list li::before {
    content: "\f00c"; /* Font Awesome check ikonu */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-red);
    top: 2px;
}

/* Genel yardımcı sınıflar */
.text-muted {
    color: #6c757d;
}
.mt-20 { 
    margin-top: 20px !important;
}