:root {
    --primary-dark: #0d1b2a;
    --primary-light: #1b4965;
    --accent-sky: #62b6cb;
    --accent-orange: #f39c12;
    --light-bg: #ffffff;
    --light-text: #f8f9fa;
    --dark-text: #333333;
}

* {
    font-family: 'Cairo', sans-serif;
}

body {
    background-color: #f8f9fa;
    color: var(--dark-text);
    line-height: 1.8;
}

h1, h2, h3, h4, h5 {
    font-family: 'Montserrat', 'Cairo', sans-serif;
    font-weight: 600;
}

.navbar {
    background-color: var(--primary-dark);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: white;
}

.logo span {
    color: var(--accent-sky);
}

.navbar-nav .nav-link {
    color: white !important;
    margin: 0 8px;
}

.navbar-nav .nav-link.active {
    color: var(--accent-sky) !important;
}

.navbar-nav .nav-link:hover {
    color: var(--accent-sky) !important;
}

.page-header {
    background: linear-gradient(rgba(13, 27, 42, 0.85), rgba(13, 27, 42, 0.9)), url('https://images.unsplash.com/photo-1520250497591-112f2f40a3f4?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 80px 0 40px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.breadcrumb {
    background-color: transparent;
    justify-content: center;
    margin-bottom: 0;
}

.breadcrumb-item a {
    color: var(--accent-sky);
    text-decoration: none;
}

.contact-container {
    padding: 60px 0;
}

.contact-form-container {
    background-color: white;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 50%;
}

.section-title {
    color: var(--primary-dark);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--accent-sky);
    bottom: 0;
    right: 0;
}

.form-label {
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.required:after {
    content: ' *';
    color: #dc3545;
}

.form-control, .form-select, textarea.form-control {
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus, textarea.form-control:focus {
    border-color: var(--accent-sky);
    box-shadow: 0 0 0 0.25rem rgba(98, 182, 203, 0.25);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.btn-primary {
    background-color: var(--accent-sky);
    border-color: var(--accent-sky);
    color: white;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-light);
    border-color: var(--primary-light);
}

.contact-method {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-method-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(98, 182, 203, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 20px;
    flex-shrink: 0;
}

.contact-method-icon i {
    font-size: 24px;
    color: var(--accent-sky);
}

.contact-method-content h5 {
    margin-bottom: 8px;
    color: var(--primary-dark);
}

.contact-method-content p {
    margin-bottom: 5px;
    color: #666;
}

.contact-method-content a {
    color: var(--accent-sky);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 5px;
}

.contact-method-content a:hover {
    text-decoration: underline;
}

.contact-info-box {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.info-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.info-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(98, 182, 203, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 18px;
    color: var(--accent-sky);
}

/* الفوتر */
.footer {
    background-color: var(--primary-dark);
    color: var(--light-text);
    padding-top: 80px;
}

.footer h5 {
    color: var(--accent-sky);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer h5:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: var(--accent-sky);
    bottom: 0;
    right: 0;
}

.footer-links a {
    color: var(--light-text);
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-sky);
    padding-right: 5px;
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-left: 10px;
    color: var(--light-text);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--accent-sky);
    transform: translateY(-5px);
}

.copyright {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    margin-top: 60px;
    text-align: center;
}

.contact-ways-title {
    color: var(--primary-dark);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent-sky);
}

.alert-info {
    background-color: rgba(98, 182, 203, 0.1);
    border-color: rgba(98, 182, 203, 0.3);
    color: var(--primary-dark);
}

.maay {
    color: chocolate;
    text-decoration: none;
    font-weight: 600;
}

.maay:hover {
    color: var(--accent-sky);
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .contact-form-container {
        padding: 30px 20px;
    }
    
    .contact-method {
        padding: 15px;
    }
    
    .contact-method-icon {
        width: 50px;
        height: 50px;
        margin-left: 15px;
    }
    
    .contact-method-icon i {
        font-size: 20px;
    }
}