/* ===== GENEL STILLER ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #FF6B35;
    --secondary-color: #E55A2B;
    --accent-color: #FF8C5A;
    --dark-color: #0a1427;
    --light-color: #F8F9FA;
    --white: #ffffff;
    --gray: #64748B;
    --light-gray: #E2E8F0;
    --header-bg: #0a1427;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== PAGE HEADER (Sayfa Başlıkları) ===== */
.page-header {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--dark-color) 100%);
    padding: 80px 0;
    color: var(--white);
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* ===== CTA SECTION (Call to Action) ===== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 80px 0;
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.cta-section .btn:hover {
    background: var(--light-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* ===== HEADER & NAVIGATION ===== */
header {
    background: var(--header-bg);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

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

.logo-text {
    font-size: 1.6rem;
    font-weight: bold;
    color: var(--white);
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
    font-size: 0.95rem;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu .btn-contact {
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-menu .btn-contact:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: 0.3s;
}

/* ===== SLIDER ===== */
.slider-container {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

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

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    z-index: 2;
    width: 80%;
}

.slide-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.slide-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 1;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,102,204,0.3);
}

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

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--white);
    transform: scale(1.2);
}

/* ===== SECTIONS ===== */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== HİZMETLER SECTION ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 3rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.service-card p {
    color: var(--gray);
    line-height: 1.8;
}

.service-card ul {
    text-align: left;
    margin-top: 1rem;
    color: var(--gray);
    list-style: disc;
    padding-left: 1.5rem;
}

.service-card ul li {
    margin-bottom: 0.5rem;
}

/* ===== ÇÖZÜMLER SECTION ===== */
.solutions-section {
    background: var(--light-color);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.solution-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.solution-item:hover {
    border-left-width: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.solution-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

/* ===== HAKKIMIZDA PAGE ===== */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 5rem;
}

.about-content.reverse {
    flex-direction: row-reverse;
}

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

.about-text h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.about-text h4 {
    color: var(--primary-color);
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.about-text p {
    margin-bottom: 1rem;
    color: var(--gray);
    line-height: 1.8;
}

.about-text ul {
    color: var(--gray);
    line-height: 2;
    margin-left: 1.5rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
}

.stat-label {
    color: var(--gray);
    margin-top: 0.5rem;
}

/* ===== İLETİŞİM PAGE ===== */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--light-gray);
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.info-icon {
    font-size: 2rem;
    color: var(--primary-color);
    min-width: 40px;
}

.info-text h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.info-text p {
    color: var(--gray);
}

.contact-info h4 {
    margin-bottom: 1rem;
    color: var(--dark-color);
    font-size: 1.2rem;
}

.contact-info .social-wrapper {
    margin-top: 2rem;
}

/* ===== KVKK & PRIVACY PAGES ===== */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.legal-content h2 {
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    color: var(--secondary-color);
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.legal-content p,
.legal-content li {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-content ul {
    margin-left: 2rem;
}

/* ===== SOSYAL MEDYA İKONLARI (GENEL) ===== */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.social-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: rgba(0,102,204,0.1);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
    flex-shrink: 0;
    vertical-align: middle;
}

.social-icon:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* İletişim sayfası - renkli sosyal medya ikonları */
.contact-info .social-links .social-icon {
    color: var(--white);
    background: rgba(0,102,204,0.8);
}

.contact-info .social-links .social-icon:hover {
    opacity: 0.9;
    transform: translateY(-3px) scale(1.1);
}

/* ===== FOOTER ===== */
footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.footer-section p,
.footer-section a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-color);
}

.footer-section .social-links {
    display: flex;
    gap: 15px;
    margin-top: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.footer-section .social-links .social-icon {
    display: inline-block !important;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: rgba(255,255,255,0.1) !important;
    border-radius: 50%;
    color: var(--white) !important;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none !important;
    flex-shrink: 0;
    vertical-align: middle;
}

.footer-section .social-links .social-icon:hover {
    background: var(--primary-color) !important;
    transform: translateY(-3px);
    color: var(--white) !important;
    text-decoration: none !important;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 65px;
        flex-direction: column;
        background-color: var(--header-bg);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.3);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .logo img {
        height: 45px;
        max-width: 150px;
    }

    .logo-text {
        font-size: 1.3rem;
    }

    .about-content,
    .contact-container {
        grid-template-columns: 1fr;
    }

    .about-content.reverse {
        flex-direction: column;
    }

    .slide-content h1 {
        font-size: 2rem;
    }

    .slide-content p {
        font-size: 1rem;
    }

    .slider-container {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .services-grid,
    .solutions-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .logo img {
        height: 40px;
        max-width: 120px;
    }

    .logo-text {
        font-size: 1.1rem;
    }

    .slide-content h1 {
        font-size: 1.5rem;
    }

    .slider-container {
        height: 300px;
    }

    section {
        padding: 50px 0;
    }

    .legal-content {
        padding: 1.5rem;
    }
}

/* ===== ANIMASYONLAR ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* ===== YÜKLENİYOR ANİMASYONU ===== */
.loading {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.loading.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== UTILITY CLASSES ===== */
.mb-5 {
    margin-bottom: 5rem;
}

.mt-5 {
    margin-top: 5rem;
}

.bg-light {
    background: var(--light-color);
}

.bg-dark {
    background: var(--dark-color);
}

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

/* Reverse layout için */
.flex-reverse {
    flex-direction: row-reverse !important;
}

/* ===== REFERANSLAR SECTION ===== */
.references-section {
    background: var(--white);
    padding: 80px 0;
    overflow: hidden;
}

.references-section .section-title {
    margin-bottom: 3rem;
}

.references-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.references-track {
    display: flex;
    gap: 60px;
    animation: scroll-references 30s linear infinite;
    width: max-content;
}

.references-track:hover {
    animation-play-state: paused;
}

.reference-item {
    flex-shrink: 0;
    width: 180px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.reference-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.reference-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

.reference-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes scroll-references {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Mobilde daha yavaş */
@media (max-width: 768px) {
    .references-track {
        animation: scroll-references 40s linear infinite;
        gap: 40px;
    }
    
    .reference-item {
        width: 140px;
        height: 80px;
        padding: 15px;
    }
}



/* ===== FEATURES SECTION ===== */
.features-section {
    background: var(--white);
    padding: 80px 0;
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.feature-box {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--dark-color) 100%);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 5px 25px rgba(255, 107, 53, 0.2);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--white);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(255, 107, 53, 0.4);
    border-color: var(--secondary-color);
}

.feature-box:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
}

.feature-box:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(255, 255, 255, 0.5);
}

.feature-box h3 {
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.feature-box:hover h3 {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.feature-box p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive adjustments for features */
@media (max-width: 968px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .feature-box {
        padding: 2rem 1.5rem;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
}

@media (max-width: 640px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .features-section {
        padding: 60px 0;
    }
    
    .feature-box {
        padding: 2rem 1.5rem;
    }
    
    .feature-box h3 {
        font-size: 1.25rem;
    }
}


/* ===== ABOUT INTRO SECTION ===== */
.about-intro-section {
    background: var(--light-color);
    padding: 80px 0;
}

.about-intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.about-intro-content p {
    font-size: 1.3rem;
    line-height: 2;
    color: var(--gray);
    margin-bottom: 2rem;
}

.read-more-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.read-more-link:hover {
    background: var(--secondary-color);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.read-more-link i {
    transition: transform 0.3s ease;
}

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

/* Responsive for about intro */
@media (max-width: 768px) {
    .about-intro-content {
        padding: 2rem;
    }
    
    .about-intro-content p {
        font-size: 1.1rem;
        line-height: 1.8;
    }
    
    .read-more-link {
        font-size: 1rem;
        padding: 10px 24px;
    }
}




/* ===== CTA CONTACT SECTION ===== */
.cta-contact-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 60px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-style: italic;
}

.cta-content .btn {
    background: var(--white);
    color: var(--primary-color);
    padding: 12px 30px;
    font-weight: 600;
}

.cta-content .btn:hover {
    background: var(--light-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* Responsive for CTA */
@media (max-width: 768px) {
    .cta-contact-section {
        padding: 50px 0;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
}


/* ===== HOW WE WORK SECTION ===== */
.how-we-work-content {
    max-width: 900px;
    margin: 3rem auto 0;
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.work-principles {
    list-style: none;
    padding: 0;
    margin: 0;
}

.work-principles li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--light-gray);
    transition: all 0.3s ease;
}

.work-principles li:last-child {
    border-bottom: none;
}

.work-principles li:hover {
    transform: translateX(10px);
    background: rgba(255, 107, 53, 0.05);
    padding-left: 1rem;
    border-radius: 8px;
}

.work-principles li i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.work-principles li span {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--gray);
}

.work-principles li span strong {
    color: var(--dark-color);
    font-weight: 600;
}

/* Responsive for how we work */
@media (max-width: 768px) {
    .how-we-work-content {
        padding: 2rem;
    }
    
    .work-principles li {
        gap: 12px;
        padding: 1.2rem 0;
    }
    
    .work-principles li span {
        font-size: 1.1rem;
    }
    
    .work-principles li i {
        font-size: 1.3rem;
    }
}

/* ===== SERVICES THREE GRID ===== */
.services-three-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 3rem;
}

.service-box {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(255, 107, 53, 0.2);
    border-color: var(--primary-color);
}

.service-box-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.service-box-icon i {
    font-size: 2rem;
    color: var(--white);
}

.service-box:hover .service-box-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-box h3 {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    padding: 0.8rem 0 0.8rem 2rem;
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.6;
    position: relative;
    transition: all 0.3s ease;
}

.service-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: bold;
}

.service-list li:hover {
    color: var(--dark-color);
    transform: translateX(5px);
}

/* Responsive for services three grid */
@media (max-width: 1200px) {
    .services-three-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-box:last-child {
        grid-column: 1 / -1;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .services-three-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-box {
        padding: 2.5rem 2rem;
    }
    
    .service-box:last-child {
        grid-column: auto;
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .service-box h3 {
        font-size: 1.5rem;
    }
    
    .service-list li {
        font-size: 1rem;
        padding-left: 1.5rem;
    }
}

.survey-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
}

.survey-header {
    text-align: center;
    margin-bottom: 3rem;
}

    .survey-header h1 {
        font-size: 2.2rem;
        color: var(--dark-color);
        margin-bottom: 1rem;
        font-weight: 700;
    }

    .survey-header p {
        font-size: 1.1rem;
        color: var(--gray);
    }

.survey-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

.question-group {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--light-gray);
}

    .question-group:last-of-type {
        border-bottom: none;
    }

.question-text {
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-weight: 500;
    line-height: 1.6;
}

.question-number {
    color: var(--primary-color);
    font-weight: 700;
    margin-right: 8px;
}

.radio-options {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

    .radio-option input[type="radio"] {
        width: 20px;
        height: 20px;
        cursor: pointer;
        accent-color: var(--primary-color);
    }

    .radio-option label {
        font-size: 1rem;
        color: var(--gray);
        cursor: pointer;
        user-select: none;
    }

.contact-fields {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

    .contact-fields h3 {
        font-size: 1.2rem;
        color: var(--dark-color);
        margin-bottom: 1rem;
    }

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

    .form-group label {
        display: block;
        margin-bottom: 0.5rem;
        color: var(--dark-color);
        font-weight: 500;
        font-size: 0.95rem;
    }

    .form-group input {
        width: 100%;
        padding: 12px;
        border: 2px solid var(--light-gray);
        border-radius: 5px;
        font-size: 1rem;
        transition: border-color 0.3s ease;
    }

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

.submit-btn {
    width: 100%;
    padding: 15px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .submit-btn:hover {
        background: var(--secondary-color);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
    }

.result-box {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 3rem;
    border-radius: 12px;
    color: var(--white);
    text-align: center;
    margin-top: 2rem;
    animation: fadeIn 0.5s ease;
}

.result-score {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.result-level {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.result-description {
    font-size: 1.2rem;
    opacity: 0.95;
    line-height: 1.6;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.optional-tag {
    color: var(--gray);
    font-size: 0.85rem;
    font-weight: 400;
}

/* ===== WHATSAPP FLOAT BUTTON ===== */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 32px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
}

    .whatsapp-float:hover {
        background-color: #128c7e;
        transform: scale(1.1);
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
        color: #fff;
    }

    .whatsapp-float i {
        line-height: 60px;
        animation: pulse-whatsapp 2s infinite;
    }

    /* Tooltip için özel stil (opsiyonel - daha belirgin olması için) */
    .whatsapp-float::before {
        content: attr(title);
        position: absolute;
        right: 70px;
        top: 50%;
        transform: translateY(-50%);
        background-color: #128c7e;
        color: white;
        padding: 8px 15px;
        border-radius: 5px;
        white-space: nowrap;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        font-size: 14px;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    }

    .whatsapp-float::after {
        content: '';
        position: absolute;
        right: 60px;
        top: 50%;
        transform: translateY(-50%);
        border: 6px solid transparent;
        border-left-color: #128c7e;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .whatsapp-float:hover::before,
    .whatsapp-float:hover::after {
        opacity: 1;
        visibility: visible;
    }

@keyframes pulse-whatsapp {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

/* Mobil için küçült ve tooltip'i gizle */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 26px;
    }

        .whatsapp-float i {
            line-height: 50px;
        }

        /* Mobilde tooltip'i gizle (alan yetersiz) */
        .whatsapp-float::before,
        .whatsapp-float::after {
            display: none;
        }
}