/* ===== PROFILE PAGE ===== */

.profile-page {
    min-height: 100vh;
    padding: 80px 20px 40px;
    background: #0a0a0a;
}

.profile-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* ===== Navbar Hide on Scroll ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.98), rgba(10, 10, 10, 0.95));
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.navbar.hide {
    transform: translateY(-100%);
}

/* ===== Profile Header ===== */
.profile-header {
    position: relative;
    margin-bottom: 40px;
}

.profile-cover {
    position: relative;
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, rgba(229, 9, 20, 0.3), rgba(178, 7, 16, 0.2));
    border-radius: 16px;
    overflow: hidden;
}

.cover-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.95), transparent);
}

.profile-info {
    position: relative;
    margin-top: -80px;
    padding: 0 30px;
    display: flex;
    align-items: flex-end;
    gap: 25px;
}

.profile-avatar-section {
    flex-shrink: 0;
}

.profile-avatar-wrapper {
    position: relative;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e50914, #b20710);
    border: 5px solid #0a0a0a;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(229, 9, 20, 0.4);
}

.profile-avatar-img,
.profile-avatar-letter {
    width: 100%;
    height: 100%;
}

.profile-avatar-img {
    object-fit: cover;
}

.profile-avatar-letter {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 52px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
}

.change-avatar-btn {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 40px;
    height: 40px;
    background: rgba(229, 9, 20, 0.95);
    border: 3px solid #0a0a0a;
    border-radius: 50%;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.change-avatar-btn:hover {
    background: #e50914;
    transform: scale(1.1);
}

.profile-details {
    flex: 1;
    padding-bottom: 20px;
}

.profile-name {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 8px 0;
}

.profile-email {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 15px 0;
}

.profile-badges {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.profile-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.profile-badge i {
    font-size: 13px;
}

.profile-badge.premium {
    background: linear-gradient(135deg, #ffd700, #ffb800);
    color: #000;
    border-color: #ffd700;
}

.profile-badge-date {
    background: rgba(255, 255, 255, 0.05);
}

/* ===== Profile Stats ===== */
.profile-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: rgba(20, 20, 20, 0.8);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(30, 30, 30, 0.9);
    border-color: rgba(229, 9, 20, 0.3);
    transform: translateY(-3px);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(229, 9, 20, 0.2), rgba(178, 7, 16, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e50914;
    font-size: 26px;
}

.stat-info {
    flex: 1;
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 5px 0;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* ===== Section Header ===== */
.section-header {
    margin-bottom: 25px;
}

.section-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
}

.section-title i {
    color: #e50914;
    font-size: 22px;
}

/* ===== Subscription Status ===== */
.subscription-status {
    margin-bottom: 40px;
}

.subscription-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: rgba(20, 20, 20, 0.8);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.subscription-card.premium-card {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 184, 0, 0.1));
    border-color: rgba(255, 215, 0, 0.3);
}

.subscription-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: rgba(255, 255, 255, 0.7);
    flex-shrink: 0;
}

.subscription-icon.premium-icon {
    background: linear-gradient(135deg, #ffd700, #ffb800);
    color: #000;
}

.subscription-details {
    flex: 1;
}

.subscription-details h3 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px 0;
}

.subscription-details p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 5px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.subscription-details p i {
    color: #e50914;
}

.subscription-details p strong {
    color: #fff;
    font-weight: 700;
}

.upgrade-btn,
.renew-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #e50914, #b20710);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.upgrade-btn:hover,
.renew-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(229, 9, 20, 0.4);
}

.renew-btn {
    background: linear-gradient(135deg, #ffd700, #ffb800);
    color: #000;
}

.renew-btn:hover {
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

/* ===== Edit Profile Form ===== */
.edit-profile-section {
    margin-bottom: 40px;
}

.edit-profile-form {
    background: rgba(20, 20, 20, 0.8);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #ddd;
    margin-bottom: 10px;
}

.form-group label i {
    color: #e50914;
    font-size: 13px;
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: #e50914;
    box-shadow: 0 0 0 4px rgba(229, 9, 20, 0.1);
}

/* ✅ تحسين: إضافة مسافة بين الأزرار والحقول */
.form-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-save,
.btn-cancel {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.3s ease;
}

.btn-save {
    background: linear-gradient(135deg, #e50914, #b20710);
    color: #fff;
}

.btn-save:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(229, 9, 20, 0.4);
}

.btn-cancel {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.8);
}

.btn-cancel:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

/* ===== Subscription History ===== */
.subscription-history {
    margin-bottom: 40px;
}

.history-table-wrapper {
    background: rgba(20, 20, 20, 0.8);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow-x: auto;
}

.history-table {
    width: 100%;
    border-collapse: collapse;
}

.history-table thead {
    background: rgba(255, 255, 255, 0.05);
}

.history-table th {
    padding: 15px;
    text-align: right;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.history-table td {
    padding: 15px;
    text-align: right;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.history-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

.history-table .no-data td {
    padding: 60px 20px;
    text-align: center;
}

.history-table .no-data i {
    font-size: 48px;
    color: rgba(255, 255, 255, 0.2);
    display: block;
    margin-bottom: 15px;
}

.history-table .no-data p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

/* ===== Loading Spinner ===== */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 5px solid rgba(255, 255, 255, 0.1);
    border-top-color: #e50914;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===== Coupon Section ===== */
.coupon-section {
    margin-bottom: 30px;
}

.coupon-card {
    background: linear-gradient(135deg, rgba(229, 9, 20, 0.1), rgba(229, 9, 20, 0.05));
    border: 2px dashed rgba(229, 9, 20, 0.3);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.coupon-card:hover {
    border-color: rgba(229, 9, 20, 0.6);
    background: linear-gradient(135deg, rgba(229, 9, 20, 0.15), rgba(229, 9, 20, 0.08));
    transform: translateY(-2px);
}

.coupon-icon {
    width: 60px;
    height: 60px;
    background: rgba(229, 9, 20, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.coupon-icon i {
    font-size: 28px;
    color: #e50914;
}

.coupon-content {
    flex: 1;
}

.coupon-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 6px 0;
}

.coupon-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.btn-coupon {
    background: linear-gradient(135deg, #e50914, #b20710);
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-coupon:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(229, 9, 20, 0.4);
}

.btn-coupon i {
    font-size: 16px;
}

/* ===== Modal Overlay ===== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ===== Coupon Modal ===== */
.coupon-modal {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.98), rgba(30, 30, 30, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    max-width: 500px;
    width: 100%;
    padding: 40px;
    position: relative;
    transform: scale(0.9);
    transition: all 0.3s ease;
}

.modal-overlay.active .coupon-modal {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #fff;
}

.modal-close:hover {
    background: rgba(229, 9, 20, 0.2);
    transform: rotate(90deg);
}

.modal-close i {
    font-size: 18px;
}

.modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.modal-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(229, 9, 20, 0.2), rgba(229, 9, 20, 0.1));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.modal-icon i {
    font-size: 40px;
    color: #e50914;
}

.modal-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px 0;
}

.modal-header p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.6;
}

/* ===== Coupon Form ===== */
.coupon-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.coupon-input {
    width: 100%;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.coupon-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
    text-transform: none;
    letter-spacing: normal;
}

.coupon-input:focus {
    outline: none;
    border-color: #e50914;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 4px rgba(229, 9, 20, 0.1);
}

.btn-activate {
    background: linear-gradient(135deg, #e50914, #b20710);
    color: #fff;
    border: none;
    padding: 16px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-activate:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(229, 9, 20, 0.5);
}

.btn-activate i {
    font-size: 18px;
}

/* ===== Password Input Wrapper ===== */
.password-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.password-input-wrapper .form-input {
    flex: 1;
    padding-right: 50px;
}

.toggle-password-btn {
    position: absolute;
    right: 12px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toggle-password-btn:hover {
    color: #e50914;
    background: rgba(229, 9, 20, 0.1);
}

.toggle-password-btn.active {
    color: #e50914;
}

.toggle-password-btn i {
    font-size: 16px;
}

/* ===== Plan Extra Details ===== */
.plan-extra-details {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.plan-extra-details p {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.plan-extra-details i {
    width: 20px;
    color: #e50914;
    font-size: 16px;
}

.plan-extra-details strong {
    color: #fff;
    font-weight: 600;
}

/* ===== Text Colors for Status ===== */
.text-success {
    color: #28a745;
    font-weight: 600;
}

.text-danger {
    color: #e50914;
    font-weight: 600;
}

.text-muted {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
}

/* ========================================== */
/* ✅ RESPONSIVE DESIGN - جميع الشاشات ✅    */
/* ========================================== */

/* 📱 Mobile Small: 320px - 480px */
@media (max-width: 480px) {
    .profile-page {
        padding: 70px 12px 30px;
    }
    
    .profile-cover {
        height: 180px;
        border-radius: 12px;
    }
    
    .profile-info {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0 15px;
        margin-top: -50px;
        gap: 15px;
    }
    
    .profile-avatar-wrapper {
        width: 100px;
        height: 100px;
        border-width: 4px;
    }
    
    .profile-avatar-letter {
        font-size: 36px;
    }
    
    .change-avatar-btn {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    
    .profile-name {
        font-size: 22px;
    }
    
    .profile-email {
        font-size: 13px;
    }
    
    .profile-badges {
        justify-content: center;
        gap: 8px;
    }
    
    .profile-badge {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .section-title {
        font-size: 18px;
        gap: 8px;
    }
    
    .section-title i {
        font-size: 18px;
    }
    
    .edit-profile-form {
        padding: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 15px;
    }
    
    .form-group label {
        font-size: 12px;
    }
    
    .form-input {
        padding: 12px 14px;
        font-size: 13px;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 12px;
        margin-top: 20px;
    }
    
    .btn-save,
    .btn-cancel {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 13px;
    }
    
    .subscription-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        gap: 15px;
    }
    
    .subscription-icon {
        width: 60px;
        height: 60px;
        font-size: 26px;
    }
    
    .subscription-details h3 {
        font-size: 16px;
    }
    
    .subscription-details p {
        font-size: 13px;
    }
    
    .upgrade-btn,
    .renew-btn {
        width: 100%;
        justify-content: center;
        padding: 10px 16px;
        font-size: 12px;
    }
    
    .coupon-card {
        flex-direction: column;
        text-align: center;
        padding: 16px;
        gap: 12px;
    }
    
    .coupon-icon {
        width: 50px;
        height: 50px;
    }
    
    .coupon-icon i {
        font-size: 22px;
    }
    
    .coupon-content h3 {
        font-size: 15px;
    }
    
    .coupon-content p {
        font-size: 12px;
    }
    
    .btn-coupon {
        width: 100%;
        justify-content: center;
        padding: 10px 16px;
        font-size: 12px;
    }
    
    .history-table-wrapper {
        padding: 12px;
    }
    
    .history-table {
        font-size: 11px;
    }
    
    .history-table th,
    .history-table td {
        padding: 8px 6px;
    }
    
    .history-table .no-data td {
        padding: 40px 15px;
    }
    
    .history-table .no-data i {
        font-size: 36px;
        margin-bottom: 10px;
    }
    
    .coupon-modal {
        padding: 20px 16px;
    }
    
    .modal-header h2 {
        font-size: 18px;
    }
    
    .modal-header p {
        font-size: 12px;
    }
    
    .modal-icon {
        width: 60px;
        height: 60px;
    }
    
    .modal-icon i {
        font-size: 28px;
    }
    
    .coupon-input {
        font-size: 13px;
        padding: 12px;
        letter-spacing: 1px;
    }
    
    .btn-activate {
        padding: 12px;
        font-size: 13px;
    }
}

/* 📱 Mobile Medium: 481px - 768px */
@media (min-width: 481px) and (max-width: 768px) {
    .profile-page {
        padding: 70px 16px 35px;
    }
    
    .profile-cover {
        height: 220px;
        border-radius: 14px;
    }
    
    .profile-info {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0 20px;
        margin-top: -60px;
    }
    
    .profile-avatar-wrapper {
        width: 120px;
        height: 120px;
    }
    
    .profile-avatar-letter {
        font-size: 44px;
    }
    
    .profile-name {
        font-size: 26px;
    }
    
    .profile-email {
        font-size: 14px;
    }
    
    .profile-badges {
        justify-content: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .form-actions {
        flex-direction: row;
        gap: 12px;
    }
    
    .btn-save,
    .btn-cancel {
        flex: 1;
        justify-content: center;
    }
    
    .subscription-card {
        flex-direction: column;
        text-align: center;
    }
    
    .coupon-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .btn-coupon {
        width: 100%;
        justify-content: center;
    }
    
    .history-table {
        font-size: 12px;
    }
    
    .history-table th,
    .history-table td {
        padding: 10px 8px;
    }
    
    .coupon-modal {
        padding: 30px 20px;
    }
    
    .modal-header h2 {
        font-size: 20px;
    }
}

/* 💻 Tablet: 769px - 1024px */
@media (min-width: 769px) and (max-width: 1024px) {
    .profile-page {
        padding: 75px 20px 35px;
    }
    
    .profile-cover {
        height: 250px;
    }
    
    .form-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
    
    .form-actions {
        gap: 16px;
    }
    
    .subscription-card {
        gap: 18px;
    }
    
    .history-table {
        font-size: 13px;
    }
}

/* 🖥️ Desktop: 1025px - 1440px */
@media (min-width: 1025px) and (max-width: 1440px) {
    .profile-page {
        padding: 80px 25px 40px;
    }
    
    .form-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* 📺 Large Desktop & TV: 1441px+ */
@media (min-width: 1441px) {
    .profile-container {
        max-width: 1400px;
    }
    
    .profile-page {
        padding: 85px 30px 45px;
    }
    
    .profile-name {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .form-input {
        font-size: 15px;
        padding: 15px 18px;
    }
}

/* ========================================== */
/* ✅ Navbar Hide on Scroll - JavaScript ✅  */
/* ========================================== */

/* سيتم إضافة الـ JavaScript في profile.js */
