.logo-container{
    margin-top: 0px;
    margin-bottom: 0px;
    width: 60px;
}

/* Profile Page Styles */
body {
    font-family: 'Cairo', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    direction: rtl;
}

.profil-main {
    margin-top: 100px;
    padding: 0;
}

/* Profile Header */
.profile-header {
    background-color: #fff;
    padding: 30px 0;
    border-bottom: 1px solid #eee;
}

.profile-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.logout-btn {
    background-color: #C39F2B;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.logout-btn:hover {
    background-color: #b08f24;
    transform: translateY(-2px);
}

.gold-line {
    height: 3px;
    background-color: #C39F2B;
    margin-top: 20px;
    border-radius: 2px;
}

/* Profile Content */
.profile-content {
    padding: 50px 0;
}

.main-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.main-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Profile Picture Section */
.profile-picture-section {
    padding: 20px;
}

.profile-picture-container {
    margin-bottom: 25px;
}

.profile-picture-placeholder {
    width: 150px;
    height: 150px;
    background-color: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    border: 3px solid #e0e0e0;
}

.profile-picture-placeholder i {
    font-size: 4rem;
    color: #999;
}

.upload-icon {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 35px;
    height: 35px;
    background-color: #C39F2B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.upload-icon i {
    font-size: 1rem;
    color: white;
}

.upload-icon:hover {
    background-color: #b08f24;
    transform: scale(1.1);
}

.profile-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.profile-email {
    font-size: 1rem;
    color: #666;
    margin: 0;
}

/* Information Blocks */
.info-blocks {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-block {
    background-color: #333;
    border-radius: 15px;
    padding: 25px;
    position: relative;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.block-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.block-icon {
    color: #C39F2B;
    font-size: 1.2rem;
    margin-left: 15px;
    width: 20px;
    text-align: center;
}

.block-title {
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
}

.block-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.block-value {
    color: white;
    font-size: 1rem;
    margin: 0;
    font-weight: 500;
}
.block-value1 {
    color: white;
    font-size: 1rem;
    margin: 0;
    font-weight: 500;
}
.block-value2 {
    color: white;
    font-size: 1rem;
    margin: 0;
    font-weight: 500;
    margin-left: auto;
}
.edit-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.edit-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 991px) {
    .profile-title {
        font-size: 2rem;
    }
    
    .main-title {
        font-size: 1.8rem;
    }
    
    .profile-picture-placeholder {
        width: 120px;
        height: 120px;
    }
    
    .profile-picture-placeholder i {
        font-size: 3rem;
    }
    
    .info-block {
        padding: 20px;
        min-height: 100px;
    }
    
    .block-title {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .profil-main {
        margin-top: 80px;
    }
    
    .profile-header {
        padding: 20px 0;
    }
    
    .profile-title {
        font-size: 1.8rem;
    }
    
    .logout-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .profile-content {
        padding: 30px 0;
    }
    
    .main-title {
        font-size: 1.5rem;
    }
    
    .main-description {
        font-size: 1rem;
    }
    
    .profile-picture-section {
        margin-bottom: 30px;
    }
    
    .info-blocks {
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .profile-title {
        font-size: 1.5rem;
    }
    
    .logout-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    .profile-picture-placeholder {
        width: 100px;
        height: 100px;
    }
    
    .profile-picture-placeholder i {
        font-size: 2.5rem;
    }
    
    .upload-icon {
        width: 30px;
        height: 30px;
    }
    
    .upload-icon i {
        font-size: 0.8rem;
    }
    
    .info-block {
        padding: 15px;
    }
    
    .block-title {
        font-size: 1rem;
    }
    
    .block-value {
        font-size: 0.9rem;
    }
}

/* Email Change Verification Modal (Same as Registration) */
.modal-blur-bg {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-center {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    padding: 2.5rem 2rem;
    text-align: center;
    max-width: 400px;
    width: 100%;
}

.modal-center h2 {
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
    font-family: 'Cairo', sans-serif;
}

.modal-center p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    font-family: 'Cairo', sans-serif;
}

.email-highlight {
    color: #C39F2B;
    font-weight: bold;
    background-color: #f8f9fa;
    padding: 2px 8px;
    border-radius: 4px;
}

.verification-note {
    color: #666;
    font-size: 0.9rem;
    margin-top: 1rem;
    font-family: 'Cairo', sans-serif;
}

.verification-status {
    text-align: center;
    margin-top: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.verification-status p {
    margin-top: 15px;
    color: #666;
    font-family: 'Cairo', sans-serif;
}

.countdown {
    font-size: 2rem;
    font-weight: bold;
    color: #28a745;
    margin: 20px 0;
    font-family: 'Cairo', sans-serif;
}

#email-change-success-modal .modal-center {
    text-align: center;
}

#email-change-success-modal .fas {
    font-size: 3rem;
    color: #28a745;
    margin-bottom: 20px;
}

#email-change-success-modal .text-success {
    color: #28a745 !important;
    font-family: 'Cairo', sans-serif;
}

/* Creative Footer */
.footer-section {
    background: linear-gradient(135deg, #4a4a4a 0%, #3a3a3a 50%, #2a2a2a 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

/* Decorative Top Border */
.footer-top-border {
    height: 4px;
    background: linear-gradient(90deg, #DBB63F 0%, #c19b2e 50%, #DBB63F 100%);
    position: relative;
}

.footer-top-border::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.3) 50%, transparent 100%);
}

/* Main Footer Content */
.footer-main {
    padding: 60px 0 40px;
    position: relative;
    z-index: 2;
}

/* Brand Section */
.footer-brand {
    margin-bottom: 30px;
}

.brand-logo-footer {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 15px;
}

.footer-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: brightness(1.1);
}

.brand-text {
    flex: 1;
}

.brand-name {
    font-size: 28px;
    font-weight: 700;
    color: #DBB63F;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.brand-tagline {
    font-size: 14px;
    color: #ccc;
    margin: 5px 0 0 0;
    font-style: italic;
}

.brand-description {
    color: #bbb;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 15px;
}

.footer-awards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.award-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #DBB63F;
    font-size: 14px;
    font-weight: 500;
}

.award-item i {
    font-size: 16px;
}

/* Footer Links */
.footer-links {
    margin-bottom: 30px;
    text-align: center;
}

.footer-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #fff;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #DBB63F, #c19b2e);
    border-radius: 1px;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu a {
    color: #bbb;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    padding-right: 15px;
}

.footer-menu a::before {
    content: '→';
    position: absolute;
    right: 0;
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s ease;
    color: #DBB63F;
}

.footer-menu a:hover {
    color: #DBB63F;
    padding-right: 20px;
}

.footer-menu a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #DBB63F, #c19b2e);
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.social-icon i {
    position: relative;
    z-index: 2;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #fff;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(219, 182, 63, 0.3);
}

.social-icon.facebook {
    background: #1877f2;
    color: #fff;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(219, 182, 63, 0.3);
}

.social-icon::before {
    opacity: 1;
}

.social-icon i {
    color: #fff;
    transform: scale(1.1);
}

/* Footer Social Section */
.footer-social {
    text-align: center;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
    padding: 25px 0;
    background: rgba(0,0,0,0.1);
}

.footer-copyright p {
    color: #999;
    margin: 0;
    font-size: 14px;
}


/* Footer Responsive Design */
@media (max-width: 768px) {
    .footer-main {
        padding: 40px 0 30px;
    }
    
    .brand-logo-footer {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .footer-awards {
        justify-content: center;
    }
    
    .social-icons {
        justify-content: center;
    }
}
