/* ============================================
   OFFER PREMIUM - Modern & Elegant Design
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.offer-premium-wrapper {
    width: 100%;
    background: #f8f9fa;
    padding: 80px 0;
}

/* MAIN CONTAINER */
.offer-content-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

/* SECTION HEADER */
.offer-section-header {
    margin-bottom: 35px;
}

.offer-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.offer-title-divider {
    width: 60px;
    height: 4px;
    background: #dc3545;
    border-radius: 2px;
    margin-bottom: 15px;
}

.offer-subtitle {
    font-size: 15px;
    color: #666;
    margin: 0;
}

/* INFO SECTION - SOL TARAF */
.offer-info-section {
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    position: sticky;
    top: 100px;
}

.offer-description {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid #f0f0f0;
}

.offer-description p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

/* FEATURES */
.offer-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.offer-feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.offer-feature-item:hover {
    background: #ffffff;
    border-color: #dc3545;
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(220, 53, 69, 0.15);
}

.offer-feature-icon {
    width: 50px;
    height: 50px;
    background: #dc3545;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.offer-feature-icon i {
    font-size: 22px;
    color: #ffffff;
}

.offer-feature-text h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.offer-feature-text p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* CONTACT INFO */
.offer-contact-info {
    padding-top: 30px;
    border-top: 2px solid #f0f0f0;
}

.offer-contact-info h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.offer-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    font-size: 15px;
    color: #333;
}

.offer-contact-item i {
    width: 35px;
    height: 35px;
    background: #dc3545;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 16px;
}

/* FORM SECTION - SAĞ TARAF */
.offer-form-section {
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.offer-premium-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.required {
    color: #dc3545;
}

.file-info {
    color: #999;
    font-size: 11px;
    text-transform: none;
    font-weight: 400;
}

.form-input {
    width: 100%;
    padding: 15px 20px;
    font-size: 15px;
    color: #333;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-input:focus {
    outline: none;
    background: #ffffff;
    border-color: #dc3545;
    box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.1);
}

.form-textarea {
    min-height: 100px;
    resize: vertical;
}

/* FILE UPLOAD */
.file-upload-wrapper {
    position: relative;
}

.form-input-file {
    position: absolute;
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    z-index: -1;
}

.file-upload-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 15px 20px;
    background: #f8f9fa;
    border: 2px dashed #e9ecef;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 15px;
    color: #666;
    font-weight: 500;
}

.file-upload-label:hover {
    background: #ffffff;
    border-color: #dc3545;
    color: #dc3545;
}

.file-upload-label i {
    font-size: 20px;
}

.form-input-file:focus + .file-upload-label {
    border-color: #dc3545;
    box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.1);
}

/* CAPTCHA */
.captcha-group {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
}

.captcha-wrapper {
    display: flex;
    gap: 15px;
    align-items: center;
}

.captcha-image {
    border-radius: 8px;
    border: 2px solid #e9ecef;
}

.captcha-input {
    max-width: 150px;
}

/* SUBMIT BUTTON */
.btn-submit {
    width: 100%;
    padding: 18px 40px;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    background: #dc3545;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.3);
}

.btn-submit:hover {
    background: #c82333;
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(220, 53, 69, 0.4);
}

.btn-submit:active {
    transform: translateY(0);
}

.btn-submit i {
    font-size: 18px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1200px) {
    .offer-content-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .offer-info-section {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    .offer-premium-wrapper {
        padding: 60px 0;
    }
    
    .offer-content-container {
        padding: 0 15px;
    }
    
    .offer-info-section,
    .offer-form-section {
        padding: 30px 25px;
    }
    
    .offer-title {
        font-size: 26px;
    }
    
    .form-row-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .offer-feature-item {
        padding: 15px;
    }
    
    .offer-feature-icon {
        width: 45px;
        height: 45px;
    }
    
    .offer-feature-icon i {
        font-size: 20px;
    }
    
    .captcha-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .captcha-input {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .offer-premium-wrapper {
        padding: 40px 0;
    }
    
    .offer-title {
        font-size: 22px;
    }
    
    .offer-info-section,
    .offer-form-section {
        padding: 25px 20px;
        border-radius: 15px;
    }
    
    .form-input {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .btn-submit {
        padding: 15px 30px;
        font-size: 14px;
    }
    
    .offer-feature-item {
        flex-direction: column;
        text-align: center;
    }
}
