body {
    background-color: #0e0d11;
    color: #f2f2f2;
    font-family: 'Vazirmatn', sans-serif;
    margin: 0;
    padding: 0;
}

/* ==========================
   Hero Section
========================== */
.page-hero {
    position: relative;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #1a1625, #0e0d11);
    overflow: hidden;
    text-align: center;
}

.page-hero .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 0, 15, 0.4), rgba(0, 0, 0, 0.8));
}

.page-hero h1 {
    position: relative;
    font-size: 36px;
    color: #e69aff;
    margin-bottom: 10px;
    z-index: 1;
}

.page-hero p {
    position: relative;
    color: #cfcfcf;
    z-index: 1;
}

/* ==========================
   Info Section
========================== */
.info-section {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 20px;
}

.info-section h2 {
    color: #e69aff;
    margin-top: 30px;
    margin-bottom: 10px;
}

.info-section p {
    color: #dcdcdc;
    line-height: 1.9;
}

/* ==========================
   Stats Boxes
========================== */
.stats {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.stat-box {
    flex: 1;
    background: #16131e;
    border-radius: 20px;
    text-align: center;
    padding: 25px 10px;
    box-shadow: 0 0 20px rgba(150, 50, 250, 0.1);
}

.stat-box h3 {
    font-size: 32px;
    color: #ff72e1;
    margin-bottom: 10px;
}

/* ==========================
   Contact Section
========================== */
.container.contact {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.contact-details {
    flex: 1;
    min-width: 300px;
}

.contact-details p {
    margin: 12px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-details i {
    color: #d18bff;
}

.contact-form {
    flex: 1;
    min-width: 300px;
    background: #16131e;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(150, 50, 250, 0.1);
}

.contact-form h2 {
    margin-bottom: 20px;
    color: #e69aff;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    margin-bottom: 15px;
    border: none;
    border-radius: 10px;
    padding: 12px;
    background: #1e1a28;
    color: #f2f2f2;
    font-family: inherit;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #aaa;
}

.btn-send {
    background: linear-gradient(90deg, #a14ffb, #ff50b8);
    border: none;
    color: #fff;
    font-weight: bold;
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    transition: 0.3s;
    width: 100%;
}

.btn-send:hover {
    box-shadow: 0 0 20px rgba(200, 50, 250, 0.4);
}

/* ==========================
   Responsive
========================== */
@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 28px;
    }

    .stats {
        flex-direction: column;
    }

    .container.contact {
        flex-direction: column;
    }
}
