 /* 1. Esasy Stiller */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background: linear-gradient(180deg, #6daaef 100%, #4a90e2 50%, #2c5aa0 100%);
            overflow-x: hidden;
        }

        .container {
            max-width: 1100px;
            margin: 68px auto;
            padding: 20px;
        }

        /* 2. Başlyk dizaýny */
        .header-section {
            text-align: center;
            margin-bottom: 20px;
        }

        .back-btn {
            position: fixed;
            top: 30px;
            left: 30px;
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
            transition: all 0.3s;
            z-index: 100;
            text-decoration: none;
            color: #333;
            font-size: 24px;
        }

        .header-section h1 {
            color: #ffffff;
            font-size: 2.5rem;
            margin-bottom: 10px;
            font-weight: 700;
            margin-top: 20px;
        }

        .header-section p {
            color: #ffffff;
            font-size: 1.1rem;
            font-weight: 700;
        }

        /* 3. Esasy Gurluş (Grid) */
        .contact-wrapper {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 30px;
            background: #fff;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
        }

        /* 4. Çep tarap: Maglumatlar */
        .info-side {
            background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
            color: #fff;
            padding: 40px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .info-side h2 {
            margin-bottom: 30px;
            font-size: 1.8rem;
        }

        .details {
            margin-bottom: 30px;
        }

        .detail-item {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
        }

        .detail-item .icon {
            background: rgba(255,255,255,0.2);
            width: 45px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 12px;
            margin-right: 15px;
            font-size: 1.2rem;
        }

        .detail-item span {
            font-size: 1rem;
            font-weight: 500;
        }

        /* 5. Sag tarap: Form */
        .form-side {
            padding: 40px;
            background: #fff;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #475569;
        }

        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #e2e8f0;
            border-radius: 10px;
            outline: none;
            transition: 0.3s;
            font-size: 1rem;
        }

        .form-control:focus {
            border-color: #2563eb;
            background-color: #f8fafc;
        }

        select.form-control {
            cursor: pointer;
        }

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

        /* 6. Düwme (Button) */
        .submit-btn {
            width: 100%;
            background: #2563eb;
            color: #fff;
            padding: 15px;
            border: none;
            border-radius: 10px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: 0.3s;
            margin-top: 10px;
        }

        .submit-btn:hover {
            background: #1d4ed8;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(37, 99, 235, 0.4);
        }

        /* 7. Mobil Görünüş */
        @media (max-width: 768px) {
            .contact-wrapper {
                grid-template-columns: 1fr;
            }
            .info-side {
                padding: 30px;
            }
            .container {
                margin: 20px auto;
            }
        }





        /* Modal Esasy Gurluşy */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Arka tarapy garaltmak */
    display: none; /* Başda görünmez ýaly */
    align-items: center;
    justify-content: center;
    z-index: 1000;
    backdrop-filter: blur(5px); /* Arka tarapy bulanyk etmek */
}

/* Modal Penjiresi */
.modal-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    transform: scale(0.7);
    transition: 0.3s all ease-in-out;
}

/* Modal açylanda ulalmagy üçin klass */
.modal-overlay.active .modal-content {
    transform: scale(1);
}

/* Ýaşyl Galajyk (Checkmark) */
.success-icon {
    width: 70px;
    height: 70px;
    background: #22c55e;
    color: white;
    font-size: 40px;
    line-height: 70px;
    border-radius: 50%;
    margin: 0 auto 20px;
    box-shadow: 0 10px 20px rgba(34, 197, 94, 0.3);
}

.modal-content h2 {
    color: #1e293b;
    margin-bottom: 10px;
}

.modal-content p {
    color: #64748b;
    margin-bottom: 25px;
}

/* Modal Düwmesi */
.modal-btn {
    background: #2563eb;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.modal-btn:hover {
    background: #1d4ed8;
    transform: scale(1.05);
}
