/* Modern Domain Satış Stili */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #f8f9fc;
    color: #333;
    line-height: 1.6;
}

.hero-section {
    position: relative;
    min-height: 100vh;
    width: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/domain-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 50px 0;
    gap: 30px;
}

.domain-info {
    color: #fff;
    width: 48%;
    padding: 30px 0;
}

.sale-badge {
    display: inline-block;
    background-color: #e32636;
    color: white;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 4px;
    margin-bottom: 20px;
    font-size: 28px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Poppins', sans-serif;
}

.domain-name {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.domain-price {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-label {
    display: block;
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 5px;
}

.price-value {
    display: inline-block;
    background-color: #00cc44;
    color: white;
    font-size: 24px;
    font-weight: 600;
    padding: 5px 20px;
    border-radius: 5px;
}

.domain-description {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 90%;
    line-height: 1.6;
}

.domain-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    font-size: 18px;
    gap: 10px;
}

.contact-item i {
    font-size: 20px;
    width: 24px;
}

.more-domains {
    color: inherit;
    text-decoration: none;
}

.offer-form {
    width: 48%;
    background-color: #fff;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.offer-form h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.offer-form p {
    color: #777;
    margin-bottom: 25px;
    font-size: 16px;
}

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

.form-label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.input-group {
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    width: 100%;
}

.input-group-prepend {
    display: flex;
    margin-right: -1px;
}

.input-group-text {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
    font-size: 1rem;
    color: #777;
    text-align: center;
    white-space: nowrap;
    background-color: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 5px 0 0 5px;
    width: 45px;
    height: 100%;
}

.form-control {
    display: block;
    width: 100%;
    padding: 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 0 5px 5px 0;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #4fd1c5;
    box-shadow: 0 0 0 0.2rem rgba(79, 209, 197, 0.25);
    outline: none;
}

textarea.form-control {
    resize: none;
    min-height: 100px;
}

.input-group .input-group-text,
.input-group .form-control {
    min-height: 48px;
    box-sizing: border-box;
}

textarea.form-control + .input-group-text,
.input-group-text + textarea.form-control {
    height: 100px;
}

.input-group-text i {
    font-size: 16px;
}

.input-group .input-group-text {
    height: 100%;
}

.btn-submit {
    background-color: #1e88e5;
    color: white;
    border: none;
    padding: 14px 30px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
    display: block;
    width: 100%;
}

.btn-submit:hover {
    background-color: #1565c0;
}

.alert {
    padding: 12px 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsive Tasarım */
@media (max-width: 992px) {
    .domain-info, .offer-form {
        width: 100%;
        margin-bottom: 30px;
    }
    
    .hero-content {
        flex-direction: column;
    }
    
    .hero-section {
        height: auto;
        padding: 50px 0;
    }
}

@media (max-width: 768px) {
    .hero-section {
        background-attachment: scroll;
        min-height: 100vh;
        height: auto;
    }
}
