﻿

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.callback-section {
    background: linear-gradient(135deg, #004d40 0%, #006d5b 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 109, 91, 0.3);
    position: relative;
    z-index: 1;
    margin: 40px 0;
}

    .callback-section::before {
        content: "";
        position: absolute;
        top: -100px;
        right: -100px;
        width: 300px;
        height: 300px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 50%;
        z-index: -1;
    }

    .callback-section::after {
        content: "";
        position: absolute;
        bottom: -150px;
        left: -100px;
        width: 400px;
        height: 400px;
        background: rgba(0, 201, 167, 0.08);
        border-radius: 50%;
        z-index: -1;
    }

.callback-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 50px;
    position: relative;
    z-index: 2;
}

.text-content {
    flex: 1;
    min-width: 300px;
    padding-right: 30px;
    color: white;
}

    .text-content h3 {
        font-size: 2.2rem;
        margin-bottom: 15px;
        position: relative;
        display: flex;
        align-items: center;
        gap: 15px;
    }

        .text-content h3 i {
            color: #00c9a7;
            font-size: 2.5rem;
            background: rgba(255, 255, 255, 0.1);
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

    .text-content p {
        font-size: 1.1rem;
        line-height: 1.8;
        opacity: 0.9;
        max-width: 600px;
    }

.highlight {
    color: #00c9a7;
    font-weight: 600;
}

.action-button {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.btn-callback {
    background: linear-gradient(to right, #00c9a7, #00a88e);
    color: white;
    text-decoration: none;
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

    .btn-callback::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
        transition: all 0.6s ease;
        z-index: -1;
    }

    .btn-callback:hover::before {
        left: 100%;
    }

    .btn-callback:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    }

.phone-info {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #00c9a7;
    font-weight: 500;
    font-size: 1.1rem;
}

    .phone-info i {
        font-size: 1.3rem;
    }

/* Responsive Tasarım */
@media (max-width: 992px) {
    .callback-content {
        padding: 40px 30px;
    }

    .text-content {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .action-button {
        width: 100%;
    }

    .btn-callback {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .text-content h3 {
        font-size: 1.8rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

        .text-content h3 i {
            width: 60px;
            height: 60px;
            font-size: 2rem;
        }

    .text-content p {
        font-size: 1rem;
    }

    .btn-callback {
        padding: 16px 35px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .callback-content {
        padding: 30px 20px;
    }

    .text-content h3 {
        font-size: 1.5rem;
    }
}

/* Animasyonlar */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.btn-callback {
    animation: pulse 2s infinite;
}
