/* GENEL GÖVDE ve FONT */
body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(to bottom, #f3f4f7, #ffffff);
    margin: 0;
    padding: 0;
    color: #2c2c2c;
}

/* SAYFA KAPSAYICI */
.container {
    max-width: 1100px;
    margin: 60px auto;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    animation: fadeIn 0.6s ease-in;
}

/* BAŞLIKLAR */
h1 {
    font-size: 38px;
    text-align: center;
    color: #d2960c;
    font-weight: 800;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.05);
}

h2 {
    font-size: 24px;
    text-align: center;
    margin-bottom: 30px;
    color: #444;
    font-weight: 600;
}

/* PARAGRAFLAR */
p {
    font-size: 18px;
    line-height: 1.8;
    text-align: justify;
    color: #333;
    font-weight: 400;
    letter-spacing: 0.3px;
    animation: fadeText 0.7s ease-in-out both;
}

/* VURGULU YAZI */
strong {
    color: #b07a09;
    font-weight: 700;
    background-color: #fff9e2;
    padding: 2px 6px;
    border-radius: 6px;
}

/* ÖZƏLLİK KARTLARI */
.features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.feature-card {
    background-color: #fdfaf1;
    padding: 20px 25px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    text-align: center;
    font-size: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 280px;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

/* ARES.AZ ÜST LİNK */
.top-link {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 20px;
}

.top-link a {
    display: inline-block;
    background-color: #d2960c;
    color: white;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 40px;
    font-size: 18px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.3s;
}

.top-link a:hover {
    background-color: #b07a09;
    transform: scale(1.05);
}

/* SATICI SİYAHISI BUTONU */
.goto-vendor-list {
    display: block;
    background-color: #d2960c;
    color: white;
    padding: 14px 32px;
    border-radius: 40px;
    font-size: 17px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    margin: 30px auto;
    transition: background 0.3s, transform 0.2s;
}

.goto-vendor-list:hover {
    background-color: #b07a09;
    transform: scale(1.05);
}

/* ŞİFRƏ GİRİŞ KUTUSU */
.password-access-box {
    background-color: #fffefc;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    max-width: 520px;
    margin: 30px auto;
    text-align: center;
    animation: slideFade 0.5s ease-in-out;
}

.password-access-box h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

/* ŞİFRƏ FORMU */
.password-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.password-form input[type="password"],
.password-form input[type="submit"] {
    padding: 12px;
    width: 85%;
    max-width: 320px;
    font-size: 16px;
    border-radius: 12px;
    box-sizing: border-box;
}

.password-form input[type="password"] {
    border: 1px solid #ccc;
}

.password-form input[type="submit"] {
    background-color: #d2960c;
    color: white;
    border: none;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.password-form input[type="submit"]:hover {
    background-color: #b07a09;
}

/* ŞİFRƏ YARDIM BAĞLANTISI */
.password-help-box {
    margin-top: 20px;
    background-color: #fff9e6;
    border: 1px dashed #d2960c;
    padding: 18px;
    border-radius: 14px;
    text-align: center;
}

.password-help-box p {
    margin: 0 0 10px 0;
    font-size: 16px;
    color: #b07a09;
}

.request-password-btn {
    background-color: #d2960c;
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.request-password-btn:hover {
    background-color: #b07a09;
}

/* EMAIL TALEP FORMU */
.request-box {
    background-color: #f7f7f7;
    border-radius: 16px;
    padding: 20px;
    margin-top: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.request-form-title {
    text-align: center;
    font-size: 16px;
    margin-bottom: 12px;
    color: #444;
}

.request-box input[type="email"] {
    padding: 10px;
    width: 80%;
    max-width: 320px;
    border-radius: 10px;
    border: 1px solid #ccc;
    margin-bottom: 10px;
}

.request-box input[type="submit"] {
    padding: 10px 20px;
    background-color: #d2960c;
    border: none;
    border-radius: 30px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.request-box input[type="submit"]:hover {
    background-color: #b07a09;
}

.error {
    color: red;
    font-weight: bold;
    font-size: 14px;
    margin-top: 10px;
    text-align: center;
}

.success-message {
    color: green;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    margin-top: 10px;
}

/* ANİMASYONLAR */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeText {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideFade {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* MOBİL UYUM */
@media screen and (max-width: 600px) {
    h1 { font-size: 26px; }
    h2 { font-size: 18px; }
    .feature-card { font-size: 14px; padding: 16px; }
}
