
    .hizmetlerimiz-section {
        padding: 40px 20px;
        background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
        position: relative;
        overflow: hidden;
    }

    .hizmetlerimiz-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, #2D628C, #4a7c95, #2D628C);
    }

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

    .services-header {
        text-align: center;
        margin-bottom: 60px;
    }

    .services-title {
        font-size: 3rem;
        font-weight: 700;
        color: #2D628C;
        margin-bottom: 16px;
        letter-spacing: -0.02em;
    }

    .services-subtitle {
        font-size: 1.25rem;
        color: #6c757d;
        max-width: 600px;
        margin: 0 auto;
        line-height: 1.6;
    }

    .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 32px;
        margin-bottom: 60px;
    }

    .service-card {
        background: white;
        padding: 32px;
        border-radius: 16px;
        box-shadow: 0 4px 20px rgba(45, 98, 140, 0.08);
        transition: all 0.3s ease;
        border: 1px solid #e9ecef;
        position: relative;
        overflow: hidden;
    }

    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #2D628C, #4a7c95);
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }

    .service-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 40px rgba(45, 98, 140, 0.15);
    }

    .service-card:hover::before {
        transform: scaleX(1);
    }

    .service-icon {
        margin-bottom: 24px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

    .service-title {
        font-size: 1.5rem;
        font-weight: 600;
        color: #2D628C;
        margin-bottom: 16px;
        line-height: 1.3;
    }

    .service-description {
        font-size: 1rem;
        color: #6c757d;
        line-height: 1.6;
        margin-bottom: 24px;
    }

    .service-link {
        color: #2D628C;
        font-weight: 500;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        transition: all 0.3s ease;
        font-size: 0.95rem;
    }

    .service-link:hover {
        color: #1a4b6b;
        transform: translateX(4px);
    }

    .services-cta {
        padding: 80px 40px;
        background-color: #0d1a2b;
        background-image: linear-gradient(145deg, #1a3a5e 0%, #0d1a2b 100%);
        border-radius: 24px;
        text-align: center;
        color: white;
        margin: 60px 0;
        position: relative;
        overflow: hidden;
        border: none;
    }

    .services-cta::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background-image: radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
        background-size: 25px 25px;
        animation: moveGrid 30s linear infinite;
        pointer-events: none;
        opacity: 0.5;
    }

    @keyframes moveGrid {
        from {
            transform: translate(0, 0);
        }
        to {
            transform: translate(-150px, -150px);
        }
    }

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

    .services-cta .cta-title {
        font-size: 2.8rem;
        font-weight: 700;
        font-family: 'JosefinSans-Bold', sans-serif;
        margin-bottom: 20px;
        color: #fff;
    }

    .cta-text {
        font-size: 1.1rem;
        max-width: 600px;
        margin: 0 auto 30px;
        line-height: 1.7;
        color: rgba(255, 255, 255, 0.8);
    }

    .cta-button {
        display: inline-block;
        background: linear-gradient(135deg, #4a9eff, #ff49e2);
        color: white;
        padding: 16px 36px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        font-size: 1.05rem;
        transition: all 0.3s ease;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
        border: none;
        font-family: 'JosefinSans-Bold', sans-serif;
    }

    .cta-button:hover {
        transform: translateY(-4px) scale(1.05);
        box-shadow: 0 10px 30px rgba(74, 158, 255, 0.4);
        background: linear-gradient(135deg, #5aa5ff, #ff59e7);
    }

    /* Featured Service Card */
    .service-card.featured {
        background: linear-gradient(135deg, #2D628C 0%, #4a7c95 100%);
        color: white;
        position: relative;
        transform: scale(1.02);
    }

    .service-card.featured .service-title,
    .service-card.featured .service-description {
        color: white;
    }

    .service-card.featured .service-link {
        color: white;
        font-weight: 600;
    }

    .service-card.featured .service-link:hover {
        color: #f8f9fa;
    }

    .service-badge {
        position: absolute;
        right: 20px;
        background: #ff6b35;
        color: white;
        padding: 6px 16px;
        border-radius: 20px;
        font-size: 0.85rem;
        font-weight: 600;
        box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
    }

    .service-card.featured svg {
        stroke: white;
        fill: white;
    }

    /* Service Features */
    .service-features {
        margin-bottom: 20px;
    }

    .feature {
        display: block;
        font-size: 0.9rem;
        color: #6c757d;
        margin-bottom: 6px;
        line-height: 1.4;
    }

    .service-card.featured .feature {
        color: rgba(255, 255, 255, 0.9);
    }

    /* Process Section - Horizontal Timeline */
    .process-section {
        margin: 80px 0;
        text-align: center;
    }

    .process-title {
        font-size: 2.5rem;
        font-weight: 700;
        color: #2D628C;
        margin-bottom: 60px;
    }

    .process-horizontal {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 40px;
        flex-wrap: wrap;
        max-width: 1200px;
        margin: 0 auto;
        padding: 40px 20px;
        position: relative;
    }

    .horizontal-line {
        position: absolute;
        top: 50%;
        left: 10%;
        right: 10%;
        height: 3px;
        background: linear-gradient(to right, transparent, #2D628C, #2D628C, transparent);
        border-radius: 2px;
        z-index: 1;
    }

    .step-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        max-width: 220px;
        z-index: 2;
        transition: transform 0.3s ease;
    }

    .step-item:hover {
        transform: translateY(-8px);
    }

    .step-circle {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, #2D628C, #4A90C2);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        font-weight: bold;
        box-shadow: 0 8px 25px rgba(45, 98, 140, 0.3);
        margin-bottom: 20px;
        border: 4px solid white;
        position: relative;
    }

    .step-info {
        background: white;
        padding: 25px;
        border-radius: 16px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        border: 2px solid #e0e6ed;
        transition: all 0.3s ease;
        width: 100%;
    }

    .step-info:hover {
        border-color: #2D628C;
        box-shadow: 0 12px 35px rgba(45, 98, 140, 0.15);
    }

    .step-icon-box {
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, #2D628C, #4A90C2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        margin: 0 auto 20px;
    }

    .step-icon-box svg {
        width: 24px;
        height: 24px;
    }

    .step-name {
        font-size: 18px;
        font-weight: bold;
        color: #2D628C;
        margin-bottom: 12px;
    }

    .step-desc {
        color: #666;
        font-size: 14px;
        line-height: 1.6;
    }

    .step-arrow {
        font-size: 30px;
        color: #2D628C;
        font-weight: bold;
        display: flex;
        align-items: center;
        height: 80px;
        z-index: 2;
        animation: pulse 2s infinite;
    }

    @keyframes pulse {
        0%, 100% {
            opacity: 1;
            transform: scale(1);
        }
        50% {
            opacity: 0.7;
            transform: scale(1.1);
        }
    }

    .step-content::before {
        content: '';
        position: absolute;
        top: 50%;
        width: 0;
        height: 0;
        border: 12px solid transparent;
        transform: translateY(-50%);
    }

    .process-step:nth-child(odd) .step-content::before {
        left: -24px;
        border-right-color: white;
    }

    .process-step:nth-child(even) .step-content::before {
        right: -24px;
        border-left-color: white;
    }

    .step-title {
        font-size: 1.4rem;
        font-weight: 600;
        color: #2D628C;
        margin-bottom: 12px;
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .process-step:nth-child(even) .step-title {
        flex-direction: row-reverse;
    }

    .step-description {
        color: #6c757d;
        line-height: 1.6;
        font-size: 1rem;
    }

    .step-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: linear-gradient(135deg, #2D628C, #4a7c95);
        color: white;
        border-radius: 10px;
        flex-shrink: 0;
    }



    @media (max-width: 768px) {
        .hizmetlerimiz-section {
            padding: 30px 15px;
        }

        .services-title {
            font-size: 2.25rem;
        }

        .services-subtitle {
            font-size: 1.125rem;
        }

        .services-grid {
            grid-template-columns: 1fr;
            gap: 24px;
        }

        .service-card {
            padding: 24px;
        }

        .services-cta {
            padding: 32px 24px;
        }

        .process-title {
            font-size: 2rem;
        }

        .process-horizontal {
            flex-direction: column;
            gap: 40px;
            padding: 20px 10px;
        }

        .horizontal-line {
            display: none;
        }

        .step-arrow {
            transform: rotate(90deg);
            font-size: 24px;
        }

        .step-item {
            max-width: 350px;
        }

        .step-circle {
            width: 70px;
            height: 70px;
            font-size: 20px;
        }




    }

    @media (max-width: 480px) {
        .services-title {
            font-size: 1.875rem;
        }

        .service-title {
            font-size: 1.25rem;
        }

        .cta-button {
            padding: 14px 24px;
            font-size: 0.95rem;
        }

        .process-title {
            font-size: 1.75rem;
        }

        .step-number {
            width: 50px;
            height: 50px;
            font-size: 1.25rem;
        }

        .all-services-button {
            padding: 12px 20px;
            font-size: 0.9rem;
        }


    }

    /* Tüm Hizmetleri Görüntüle Butonu Stilleri */
    .all-services-button-container {
        text-align: center;
        margin: 40px 0;
    }

    .all-services-button {
        display: inline-block;
        padding: 16px 32px;
        background: linear-gradient(135deg, #2D628C 0%, #4a7c95 100%);
        color: white;
        text-decoration: none;
        border-radius: 50px;
        font-size: 1.1rem;
        font-weight: 600;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(45, 98, 140, 0.3);
        position: relative;
        overflow: hidden;
    }

    .all-services-button::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.5s;
    }

    .all-services-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(45, 98, 140, 0.4);
        background: linear-gradient(135deg, #3c7ba1 0%, #5a8ca8 100%);
    }

    .all-services-button:hover::before {
        left: 100%;
    }

    .all-services-button:active {
        transform: translateY(0);
    }

    /* Action Hub Section - Contact Split Layout */
    .action-hub-section {
        padding: 80px 0;
        margin: 40px 0;
        background: linear-gradient(135deg, #f8fafb 0%, #ffffff 100%);
        position: relative;
    }

    .action-hub-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 40px;
    }

    /* Contact Split Layout */
    .contact-split {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: start;
    }

    /* Sol Taraf - İletişim Bilgileri */
    .contact-info {
        padding: 40px 0;
    }

    .contact-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 8px 16px;
        background: rgba(45, 98, 140, 0.08);
        color: #2D628C;
        font-size: 0.8rem;
        font-weight: 600;
        border-radius: 40px;
        margin-bottom: 24px;
        border: 1px solid rgba(45, 98, 140, 0.1);
        transition: all 0.3s ease;
    }

    .contact-badge:hover {
        background: rgba(45, 98, 140, 0.12);
        transform: translateY(-1px);
    }

    .contact-title {
        font-size: 3.2rem;
        font-weight: 700;
        margin-bottom: 20px;
        line-height: 1.1;
        color: #1a1a1a;
        letter-spacing: -0.02em;
    }

    .title-highlight {
        background: linear-gradient(135deg, #2D628C, #4a7c95);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .contact-subtitle {
        font-size: 1.1rem;
        color: #6c757d;
        line-height: 1.6;
        margin-bottom: 40px;
        font-weight: 400;
        max-width: 480px;
    }

    .contact-details {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .contact-item {
        display: flex;
        align-items: center;
        gap: 16px;
        padding: 20px;
        background: white;
        border-radius: 12px;
        border: 1px solid rgba(45, 98, 140, 0.08);
        transition: all 0.3s ease;
    }

    .contact-item:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 16px rgba(45, 98, 140, 0.08);
        border-color: rgba(45, 98, 140, 0.15);
    }

    .contact-icon {
        width: 48px;
        height: 48px;
        background: linear-gradient(135deg, rgba(45, 98, 140, 0.1), rgba(45, 98, 140, 0.05));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .contact-text {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    .contact-label {
        font-size: 0.85rem;
        color: #6c757d;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .contact-value {
        font-size: 1rem;
        color: #1a1a1a;
        font-weight: 600;
    }

    /* Sağ Taraf - İletişim Formu */
    .contact-form-wrapper {
        padding: 40px 0;
    }

    .contact-form-card {
        background: white;
        border-radius: 20px;
        padding: 40px;
        box-shadow: 0 8px 32px rgba(45, 98, 140, 0.08);
        border: 1px solid rgba(45, 98, 140, 0.05);
        transition: all 0.3s ease;
    }

    .contact-form-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 16px 48px rgba(45, 98, 140, 0.12);
    }

    .form-title {
        font-size: 1.8rem;
        font-weight: 600;
        color: #1a1a1a;
        margin-bottom: 8px;
    }

    .form-subtitle {
        font-size: 1rem;
        color: #6c757d;
        margin-bottom: 32px;
        line-height: 1.5;
    }

    .contact-form {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .form-group {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .form-group label {
        font-size: 0.9rem;
        font-weight: 600;
        color: #2D628C;
    }

    .form-group input,
    .form-group textarea {
        padding: 12px 16px;
        border: 1.5px solid #e1e5e9;
        border-radius: 8px;
        font-size: 0.95rem;
        transition: all 0.3s ease;
        background: #f8f9fa;
        font-family: inherit;
    }

    .form-group input:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: #2D628C;
        background: white;
        box-shadow: 0 0 0 3px rgba(45, 98, 140, 0.1);
    }

    .form-group input::placeholder,
    .form-group textarea::placeholder {
        color: #9ca3af;
    }

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

    .form-group select {
        background: white;
        border: 1.5px solid #e1e5e9;
        border-radius: 8px;
        padding: 12px 16px;
        font-size: 0.95rem;
        color: #374151;
        transition: all 0.3s ease;
        width: 100%;
        appearance: none;
        background-color: #f8f9fa;
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
        background-position: right 12px center;
        background-repeat: no-repeat;
        background-size: 16px;
        font-family: inherit;
    }

    .form-group select:focus {
        outline: none;
        border-color: #2D628C;
        background-color: white;
        box-shadow: 0 0 0 3px rgba(45, 98, 140, 0.1);
    }

    .checkbox-container {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        cursor: pointer;
        font-size: 0.9rem;
        line-height: 1.5;
        margin-top: 8px;
    }

    .checkbox-container input[type="checkbox"] {
        width: 18px;
        height: 18px;
        margin: 0;
        cursor: pointer;
        accent-color: #2D628C;
        margin-top: 2px;
    }

    .checkbox-container a {
        color: #2D628C;
        text-decoration: underline;
    }

    .checkbox-container a:hover {
        color: #1a4b6b;
    }

    .error-message {
        color: #dc3545;
        font-size: 0.875rem;
        margin-top: 4px;
        display: block;
        font-weight: 500;
    }

    .form-submit {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 16px 32px;
        background: #2D628C;
        color: white;
        border: none;
        border-radius: 10px;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        font-family: inherit;
        margin-top: 8px;
    }

    .form-submit:hover {
        background: #3c7ba1;
        transform: translateY(-2px);
        box-shadow: 0 6px 24px rgba(45, 98, 140, 0.3);
    }

    .form-submit svg {
        transition: transform 0.3s ease;
    }

    .form-submit:hover svg {
        transform: translateX(2px);
    }

    @media (max-width: 1024px) {
        .contact-split {
            gap: 60px;
        }

        .contact-title {
            font-size: 2.8rem;
        }

        .contact-form-card {
            padding: 32px;
        }
    }

    @media (max-width: 768px) {
        .action-hub-section {
            padding: 60px 0;
            margin: 30px 0;
        }

        .action-hub-container {
            padding: 0 20px;
        }

        .contact-split {
            grid-template-columns: 1fr;
            gap: 50px;
        }

        .contact-info {
            padding: 0;
            text-align: center;
        }

        .contact-title {
            font-size: 2.5rem;
        }

        .contact-subtitle {
            max-width: none;
        }

        .contact-form-wrapper {
            padding: 0;
        }

        .contact-form-card {
            padding: 32px 24px;
        }

        .form-row {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .form-title {
            font-size: 1.6rem;
        }
    }

    @media (max-width: 480px) {
        .action-hub-section {
            padding: 40px 0;
        }

        .contact-title {
            font-size: 2.2rem;
        }

        .contact-subtitle {
            font-size: 1rem;
        }

        .contact-form-card {
            padding: 24px 20px;
        }

        .contact-item {
            padding: 16px;
        }

        .contact-icon {
            width: 40px;
            height: 40px;
        }

        .form-submit {
            padding: 14px 24px;
            font-size: 0.95rem;
        }
    }

    /* Referanslar Bölümü */
    .referanslar-section {
        background: #ffffff;
        color: #333;
    }

    .referanslar-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 60px;
    }

    .referanslar-content {
        text-align: left;
    }

    .referanslar-layout {
        display: grid;
        grid-template-columns: 42fr 8fr 50fr;
        gap: 0;
        align-items: flex-start;
    }

    .referanslar-header {
        max-width: 100%;
    }

    .section-badge {
        display: inline-block;
        font-size: 0.9em;
        font-weight: 600;
        color: #666;
        text-transform: uppercase;
        margin-bottom: 12px;
    }

    .badge-line {
        width: 100%;
        height: 1px;
        background-color: #ddd;
        margin-bottom: 20px;
    }

    .section-title {
        font-size: 3.5rem;
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 24px;
        color: #1a1a1a;
        letter-spacing: -0.02em;
    }

    .section-subtitle {
        font-size: 1.2rem;
        line-height: 1.6;
        color: #666;
        font-weight: 400;
    }

    .brands-section {
        display: flex;
        flex-direction: column;
        margin-top: -40px;
    }

    .brands-badge {
        display: inline-block;
        font-size: 0.875rem;
        font-weight: 600;
        color: #666;
        letter-spacing: 2px;
        text-transform: uppercase;
        margin-bottom: 20px;
        align-self: flex-start;
    }

    .brands-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px 50px;
        align-items: center;
    }

    .brand-item {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px;
        transition: all 0.3s ease;
        border-radius: 12px;
        background: #ffffff;
    }

    .brand-item:hover {
        transform: translateY(-4px);
    }

    .brand-logo {
        max-width: 140px;
        max-height: 70px;
        width: auto;
        height: auto;
        filter: none;
        opacity: 0.7;
        transition: all 0.3s ease;
    }

    .brand-item:hover .brand-logo {
        opacity: 1;
        transform: scale(1.02);
    }

    @media (max-width: 1200px) {
        .brands-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 50px 60px;
        }
    }

    @media (max-width: 1024px) {
        .referanslar-layout {
            grid-template-columns: 1fr;
            gap: 60px;
        }

        .spacer {
            display: none;
        }
    }

    @media (max-width: 768px) {
        .referanslar-section {
            padding: 80px 0;
            margin-top: 80px;
        }

        .referanslar-container {
            padding: 0 40px;
        }

        .referanslar-layout {
            gap: 50px;
        }

        .section-title {
            font-size: 2.5rem;
        }

        .section-subtitle {
            font-size: 1.1rem;
        }

        .brands-grid {
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 10px;
        }

        .brand-item {
            padding: 12px;
        }

        .brand-logo {
            max-width: 120px;
            max-height: 60px;
        }
    }

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

        .section-title {
            font-size: 2rem;
        }

        .sectors-title-wide {
            width: 100%;
        }

        span.section-subtitle {
            margin-top: 2%;
        }

        .brands-grid {
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            margin-top: 10px;
        }

        .brand-item {
            padding: 10px;
        }

        .brand-logo {
            max-width: 100px;
            max-height: 50px;
        }
    }

    /* Sektörler Bölümü */
    .sectors-section {
        padding: 120px 0;
        background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    }

    .sectors-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 60px;
    }

    .sectors-content {
        text-align: left;
    }

    .sectors-layout {
        display: grid;
        grid-template-columns: 42fr 8fr 50fr;
        gap: 0;
        align-items: flex-start;
        margin-bottom: 80px;
    }

    .sectors-header {
        max-width: 100%;
    }

    .sectors-description {
        display: flex;
        flex-direction: column;
    }

    .sectors-title-wide {
        width: 110%;
    }

    span.section-subtitle {
        margin-top: 3%;
    }

    .sectors-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
        margin-top: 60px;
    }

    .sector-item {
        background: white;
        padding: 40px 30px;
        border-radius: 20px;
        text-align: center;
        transition: all 0.3s ease;
        border: 1px solid #e9ecef;
        position: relative;
        overflow: hidden;
    }

    .sector-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #2D628C, #4a7c95);
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }

    .sector-item:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 50px rgba(45, 98, 140, 0.15);
        border-color: #2D628C;
    }

    .sector-item:hover::before {
        transform: scaleX(1);
    }

    .sector-icon {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, #f8f9fa, #ffffff);
        border: 2px solid #e9ecef;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 24px;
        transition: all 0.3s ease;
    }

    .sector-item:hover .sector-icon {
        transform: scale(1.1);
    }

    .sector-title {
        font-size: 1.4rem;
        font-weight: 600;
        color: #2D628C;
        margin-bottom: 12px;
        transition: color 0.3s ease;
    }

    .sector-item:hover .sector-title {
        color: #1a4b6b;
    }

    .sector-desc {
        font-size: 0.95rem;
        color: #6c757d;
        line-height: 1.6;
        transition: color 0.3s ease;
    }

    .sector-item:hover .sector-desc {
        color: #495057;
    }

    /* Sector Link Styles */
    .sector-link {
        text-decoration: none;
        color: inherit;
        display: block;
        cursor: pointer;
    }

    .sector-link:hover {
        text-decoration: none;
        color: inherit;
    }

    .sector-link:visited,
    .sector-link:focus {
        text-decoration: none;
        color: inherit;
    }

    @media (max-width: 1200px) {
        .sectors-grid {
            grid-template-columns: repeat(3, 1fr);
            gap: 35px;
        }
    }

    @media (max-width: 1024px) {
        .sectors-layout {
            grid-template-columns: 1fr;
            gap: 60px;
        }

        .spacer {
            display: none;
        }

        .sectors-title-wide {
            width: 100%;
        }
    }

    @media (max-width: 768px) {
        .sectors-section {
            padding: 80px 0;
        }

        .sectors-container {
            padding: 0 40px;
        }

        .sectors-layout {
            gap: 50px;
            margin-bottom: 60px;
        }

        .sectors-title-wide {
            width: 100%;
        }

        span.section-subtitle {
            margin-top: 1.5%;
        }

        .sectors-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-top: 40px;
        }

        .sector-item {
            padding: 30px 20px;
        }

        .sector-icon {
            width: 70px;
            height: 70px;
            margin-bottom: 20px;
        }

        .sector-title {
            font-size: 1.2rem;
        }

        .sector-desc {
            font-size: 0.9rem;
        }
    }

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

        .sectors-layout {
            gap: 40px;
            margin-bottom: 50px;
        }

        .section-title {
            font-size: 2rem;
        }

        .sectors-title-wide {
            width: 100%;
        }

        span.section-subtitle {
            margin-top: 1%;
        }

        .sectors-grid {
            grid-template-columns: 1fr;
            gap: 25px;
        }

        .sector-item {
            padding: 25px 20px;
        }

        .sector-icon {
            width: 60px;
            height: 60px;
        }

        .sector-title {
            font-size: 1.1rem;
        }
    }

    /* SSS Bölümü */
    .faq-section {
        padding: 120px 0;
        background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    }

    .faq-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 60px;
    }

    .faq-content {
        text-align: left;
    }

    .faq-layout {
        display: grid;
        grid-template-columns: 42fr 8fr 50fr;
        gap: 0;
        align-items: flex-start;
        margin-bottom: 1px;
        height: 130px;
    }

    .faq-header {
        max-width: 100%;
    }

    .faq-description {
        display: flex;
        flex-direction: column;
    }

    .faq-title-wide {
        width: 110%;
    }

    .faq-questions {
        max-width: 650px;
        margin: 0 0 0 auto;
    }

    .faq-item {
        background: white;
        border-radius: 16px;
        margin-bottom: 16px;
        border: 1px solid #e9ecef;
        transition: all 0.3s ease;
        overflow: hidden;
    }

    .faq-item:hover {
        box-shadow: 0 4px 20px rgba(45, 98, 140, 0.08);
        border-color: rgba(45, 98, 140, 0.15);
    }

    .faq-item.active {
        border-color: #2D628C;
        box-shadow: 0 8px 32px rgba(45, 98, 140, 0.12);
    }

    .faq-question {
        padding: 24px 32px;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
        transition: all 0.3s ease;
    }

    .faq-question:hover {
        background: #f8f9fa;
    }

    .faq-item.active .faq-question {
        background: linear-gradient(135deg, rgba(45, 98, 140, 0.03), rgba(45, 98, 140, 0.01));
        border-bottom: 1px solid #e9ecef;
    }

    .faq-question h3 {
        font-size: 1.2rem;
        font-weight: 600;
        color: #1a1a1a;
        margin: 0;
        line-height: 1.4;
        flex: 1;
    }

    .faq-icon {
        width: 32px;
        height: 32px;
        background: linear-gradient(135deg, rgba(45, 98, 140, 0.1), rgba(45, 98, 140, 0.05));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        flex-shrink: 0;
    }

    .faq-item.active .faq-icon {
        background: #e5e5e5;
        transform: rotate(180deg);
    }

    .faq-item.active .faq-icon svg {
        stroke: white;
    }

    .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
        opacity: 0;
    }

    .faq-item.active .faq-answer {
        max-height: 200px;
        opacity: 1;
        padding: 0 32px 32px 32px;
    }

    .faq-answer p {
        font-size: 1rem;
        color: #6c757d;
        line-height: 1.7;
        margin: 0;
        margin-top: 8px;
    }

    @media (max-width: 1024px) {
        .faq-layout {
            grid-template-columns: 1fr;
            gap: 50px;
            margin-bottom: 1px;
            height: auto;
        }

        .spacer {
            display: none;
        }

        .faq-title-wide {
            width: 100%;
        }

        .faq-questions {
            max-width: 100%;
            margin-top: 40px;
        }
    }

    @media (max-width: 768px) {
        .faq-section {
            padding: 80px 0;
        }

        .faq-container {
            padding: 0 40px;
        }

        .faq-layout {
            gap: 40px;
            margin-bottom: 1px;
            height: auto;
        }

        .faq-questions {
            margin-top: 30px;
        }

        .faq-title-wide {
            width: 100%;
        }

        .faq-question {
            padding: 20px 24px;
            gap: 16px;
        }

        .faq-question h3 {
            font-size: 1.1rem;
        }

        .faq-icon {
            width: 28px;
            height: 28px;
        }

        .faq-item.active .faq-answer {
            padding: 0 24px 24px 24px;
        }

        .faq-answer p {
            font-size: 0.95rem;
        }
    }

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

        .faq-layout {
            gap: 30px;
            margin-bottom: 1px;
            height: auto;
        }

        .section-title {
            font-size: 2rem;
        }

        .faq-title-wide {
            width: 100%;
        }

        .faq-question {
            padding: 18px 20px;
            gap: 12px;
        }

        .faq-question h3 {
            font-size: 1rem;
        }

        .faq-icon {
            width: 24px;
            height: 24px;
        }

        .faq-item.active .faq-answer {
            padding: 0 20px 20px 20px;
        }
    }

    /* Hakkımızda Bölümü Stilleri */
    .hakkimizda-sec {
        padding: 120px 0;
        background: linear-gradient(135deg, #f8fafb 0%, #ffffff 100%);
        position: relative;
    }

    .hakkimizda-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 60px;
    }

    .hakkimizda-content {
        text-align: left;
    }

    .hakkimizda-layout {
        display: grid;
        grid-template-columns: 42fr 8fr 50fr;
        gap: 0;
        align-items: flex-start;
        margin-bottom: 80px;
    }

    .hakkimizda-header {
        max-width: 100%;
    }

    .hakkimizda-description {
        display: flex;
        flex-direction: column;
    }

    .hakkimizda-title-wide {
        width: 110%;
    }

    /* Değerler Grid */
    .values-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
        margin-bottom: 80px;
    }

    .value-item {
        background: white;
        padding: 40px 30px;
        border-radius: 20px;
        text-align: center;
        transition: all 0.3s ease;
        border: 1px solid #e9ecef;
        position: relative;
        overflow: hidden;
    }

    .value-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #2D628C, #4a7c95);
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }

    .value-item:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 50px rgba(45, 98, 140, 0.15);
        border-color: #2D628C;
    }

    .value-item:hover::before {
        transform: scaleX(1);
    }

    .value-icon {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, #f8f9fa, #ffffff);
        border: 2px solid #e9ecef;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 24px;
        transition: all 0.3s ease;
    }

    .value-item:hover .value-icon {
        transform: scale(1.1);
        border-color: #2D628C;
    }

    .value-title {
        font-size: 1.4rem;
        font-weight: 600;
        color: #2D628C;
        margin-bottom: 12px;
        transition: color 0.3s ease;
    }

    .value-item:hover .value-title {
        color: #1a4b6b;
    }

    .value-desc {
        font-size: 0.95rem;
        color: #6c757d;
        line-height: 1.6;
        transition: color 0.3s ease;
    }

    .value-item:hover .value-desc {
        color: #495057;
    }

    /* Hikayemiz Bölümü */
    .story-section {
        margin: 80px 0;
    }

    .story-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
    }

    .story-title {
        font-size: 2.5rem;
        font-weight: 700;
        color: #2D628C;
        margin-bottom: 24px;
    }

    .story-description {
        font-size: 1.1rem;
        color: #6c757d;
        line-height: 1.7;
        margin-bottom: 20px;
    }

    .story-stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .stat-item {
        text-align: center;
        padding: 24px;
        background: linear-gradient(135deg, #2D628C, #4a7c95);
        border-radius: 16px;
        color: white;
        transition: transform 0.3s ease;
    }

    .stat-item:hover {
        transform: translateY(-4px);
    }

    .stat-number {
        display: block;
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 8px;
    }

    .stat-label {
        font-size: 0.9rem;
        opacity: 0.9;
    }

    /* Liderlik Takımı */
    .team-section {
        margin: 80px 0;
    }

    .team-section-title {
        font-size: 2.2rem;
        font-weight: 600;
        color: #2D628C;
        margin-bottom: 40px;
        text-align: center;
    }

    .team-member {
        background: white;
        border-radius: 20px;
        padding: 40px;
        box-shadow: 0 8px 32px rgba(45, 98, 140, 0.08);
        border: 1px solid #e9ecef;
    }

    .member-info {
        display: flex;
        gap: 30px;
        align-items: flex-start;
    }

    .member-avatar {
        flex-shrink: 0;
    }

    .avatar-placeholder {
        width: 120px;
        height: 120px;
        background: linear-gradient(135deg, #f8f9fa, #e9ecef);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 4px solid #2D628C;
    }

    .member-name {
        font-size: 1.8rem;
        font-weight: 600;
        color: #2D628C;
        margin-bottom: 8px;
    }

    .member-title {
        font-size: 1.1rem;
        color: #4a7c95;
        font-weight: 500;
        margin-bottom: 16px;
    }

    .member-bio {
        font-size: 1rem;
        color: #6c757d;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .member-specialties {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    .specialty {
        font-size: 0.85rem;
        color: #2D628C;
        background: rgba(45, 98, 140, 0.08);
        padding: 4px 12px;
        border-radius: 20px;
        display: inline-block;
    }

    /* Misyon & Vizyon */
    .mission-vision {
        margin: 80px 0;
    }

    .mission-vision-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .mission-card,
    .vision-card {
        background: white;
        padding: 40px;
        border-radius: 20px;
        text-align: center;
        border: 1px solid #e9ecef;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .mission-card:hover,
    .vision-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 16px 40px rgba(45, 98, 140, 0.12);
    }

    .card-icon {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, rgba(45, 98, 140, 0.1), rgba(45, 98, 140, 0.05));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 24px;
    }

    .card-title {
        font-size: 1.5rem;
        font-weight: 600;
        color: #2D628C;
        margin-bottom: 16px;
    }

    .card-description {
        font-size: 1rem;
        color: #6c757d;
        line-height: 1.6;
    }

    @media (max-width: 1200px) {
        .values-grid {
            grid-template-columns: repeat(3, 1fr);
            gap: 35px;
        }
    }

    @media (max-width: 1024px) {
        .hakkimizda-layout {
            grid-template-columns: 1fr;
            gap: 60px;
        }

        .spacer {
            display: none;
        }

        .hakkimizda-title-wide {
            width: 100%;
        }

        .story-content {
            grid-template-columns: 1fr;
            gap: 50px;
        }

        .mission-vision-grid {
            grid-template-columns: 1fr;
            gap: 30px;
        }
    }

    @media (max-width: 768px) {
        .hakkimizda-sec {
            padding: 80px 0;
        }

        .hakkimizda-container {
            padding: 0 40px;
        }

        .hakkimizda-layout {
            gap: 50px;
            margin-bottom: 60px;
        }

        .hakkimizda-title-wide {
            width: 100%;
        }

        .values-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-bottom: 60px;
        }

        .value-item {
            padding: 30px 20px;
        }

        .value-icon {
            width: 70px;
            height: 70px;
            margin-bottom: 20px;
        }

        .value-title {
            font-size: 1.2rem;
        }

        .value-desc {
            font-size: 0.9rem;
        }

        .story-title {
            font-size: 2rem;
        }

        .story-description {
            font-size: 1rem;
        }

        .member-info {
            flex-direction: column;
            text-align: center;
            gap: 20px;
        }

        .avatar-placeholder {
            width: 100px;
            height: 100px;
            margin: 0 auto;
        }

        .member-specialties {
            justify-content: center;
        }
    }

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

        .hakkimizda-layout {
            gap: 40px;
            margin-bottom: 50px;
        }

        .section-title {
            font-size: 2rem;
        }

        .hakkimizda-title-wide {
            width: 100%;
        }

        .values-grid {
            grid-template-columns: 1fr;
            gap: 25px;
        }

        .value-item {
            padding: 25px 20px;
        }

        .value-icon {
            width: 60px;
            height: 60px;
        }

        .value-title {
            font-size: 1.1rem;
        }

        .story-stats {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .stat-number {
            font-size: 2rem;
        }

        .team-member {
            padding: 30px 20px;
        }

        .member-name {
            font-size: 1.5rem;
        }

        .mission-card,
        .vision-card {
            padding: 30px 20px;
        }

        .card-icon {
            width: 60px;
            height: 60px;
        }

        .card-title {
            font-size: 1.3rem;
        }
    }
    section.hakkimizda-sec {
margin-top: -10%;
}

body {
    opacity: 0;
    transition: opacity 0.4s linear;
}

body.loaded {
    opacity: 1;
}

/* Dropdown menü stilleri */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 12px 0;
    margin-top: 8px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
    background: white;
    width: 100%;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: #2D628C;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    border-radius: 0;
}

.dropdown-menu a:hover {
    background-color: #f8f9fa;
    color: #1a4b6b;
    padding-left: 24px;
}

.dropdown-toggle {
    position: relative;
}

.dropdown-toggle::after {
    content: "▼";
    font-size: 10px;
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

/* Active state */
.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown.active .dropdown-toggle::after {
    transform: rotate(180deg);
}

/* Mobil için responsive */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        opacity: 0;
        visibility: hidden;
        transform: none;
        box-shadow: none;
        background: transparent;
        padding: 0;
        margin: 0;
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .dropdown.active .dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: 300px;
    }

    .dropdown-menu a {
        padding: 8px 16px;
        border-left: 2px solid #e9ecef;
        margin-left: 16px;
    }

    .dropdown-toggle::after {
        content: "▼";
        font-size: 10px;
        margin-left: 8px;
        transition: transform 0.3s ease;
    }
}
.dropdown-mobile {
    position: relative;
}

.dropdown-toggle-mobile {
    display: flex;
    align-items: center;
    width: 100%;
    cursor: pointer;
    text-decoration: none;
    border: none;
    background: none;
    color: inherit;
    font: inherit;
    padding: 0;
}

/* Ana sayfa nav-link'iyle tamamen aynı görünüm */
.dropdown-toggle-mobile .text-content {
    flex: 1;
}

.dropdown-arrow {
    width: 10px;
    height: 10px;
    margin-left: auto;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    opacity: 0.7;
}

.dropdown-toggle-mobile:hover .dropdown-arrow {
    opacity: 1;
}

.dropdown-menu-mobile {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    background: rgba(255, 255, 255, 0.03);
    margin-top: 0.5rem;
    margin-left: 2.5rem;
    border-radius: 8px;
    padding: 0;
}

.dropdown-mobile.active .dropdown-menu-mobile {
    max-height: 400px;
    opacity: 1;
    padding: 0.75rem 0;
}

.dropdown-mobile.active .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu-mobile .sub-nav {
    margin-bottom: 0.5rem;
}

.dropdown-menu-mobile .sub-nav:last-child {
    margin-bottom: 0;
}

.dropdown-menu-mobile .sub-nav .nav-link {
    opacity: 0.85;
    transition: opacity 0.2s ease;
}

.dropdown-menu-mobile .sub-nav .nav-link:hover {
    opacity: 1;
}

.dropdown-menu-mobile .sub-nav .svg-container {
    transform: scale(0.7);
}

.dropdown-menu-mobile .sub-nav .text-content span {
    font-size: 0.9em;
}

/* Tüm animasyonları smooth yap */
.dropdown-mobile,
.dropdown-mobile * {
    transition: all 0.3s ease;
}

/* Dil Seçici Stilleri */
.language-selector {
    position: relative;
    display: inline-flex;
    align-items: center;
    margin-right: 0;
}

.language-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(45, 98, 140, 0.1);
    border: 2px solid rgba(45, 98, 140, 0.2);
    border-radius: 25px;
    padding: 8px 16px;
    color: #2D628C;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.language-btn:hover {
    background: rgba(45, 98, 140, 0.15);
    border-color: rgba(45, 98, 140, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(45, 98, 140, 0.2);
}

.language-btn .flag-icon {
    font-size: 16px;
    line-height: 1;
}

.language-btn .lang-text {
    font-weight: 700;
    letter-spacing: 0.5px;
}

.language-btn .dropdown-arrow {
    transition: transform 0.3s ease;
    stroke: #2D628C;
    width: 10px;
    height: 6px;
}

.language-selector.active .language-btn .dropdown-arrow {
    transform: rotate(180deg);
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 2px solid rgba(45, 98, 140, 0.1);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 8px 0;
    min-width: 140px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1000;
    backdrop-filter: blur(20px);
}

.language-selector.active .language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.lang-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    color: #333;
    text-decoration: none;
    transition: all 0.2s ease;
    font-weight: 500;
    font-size: 14px;
}

.lang-item:hover {
    background: rgba(45, 98, 140, 0.08);
    color: #2D628C;
    transform: translateX(4px);
}

.lang-item.active {
    background: linear-gradient(135deg, rgba(45, 98, 140, 0.1), rgba(45, 98, 140, 0.05));
    color: #2D628C;
    font-weight: 700;
    position: relative;
}

.lang-item.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(135deg, #2D628C, #4a7c95);
    border-radius: 0 2px 2px 0;
}

.lang-item .flag-icon {
    font-size: 16px;
    line-height: 1;
}

/* Mobil için düzenlemeler */
@media (max-width: 768px) {
    .language-selector {
        margin-right: 0;
    }

    .language-btn {
        padding: 6px 12px;
        font-size: 13px;
    }

    .language-dropdown {
        min-width: 120px;
        right: -10px;
    }

    .lang-item {
        padding: 10px 14px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .language-selector {
        margin-right: 0;
    }

    .language-btn {
        padding: 5px 10px;
    }

    .language-btn .lang-text {
        display: none;
    }

    .language-dropdown {
        right: -5px;
        min-width: 100px;
    }
}
