:root {
    --primary-color: #0d47a1; /* أزرق داكن احترافي */
    --secondary-color: #1976d2; /* أزرق فاتح */
    --accent-color: #ff9800; /* برتقالي للمسات الجمالية */
    --text-dark: #333;
    --text-light: #f4f4f4;
    --bg-color: #fafbfc;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cairo', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-dark);
    line-height: 1.7;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.main-header {
    background-color: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 999;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.logo img {
    height: 50px;
}

.navbar a {
    text-decoration: none;
    color: var(--text-dark);
    margin: 0 15px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.navbar a:hover {
    color: var(--secondary-color);
}

.navbar i {
    margin-left: 5px;
}

/* Hero Section */
.hero-section {
    position: relative;
    background: url('https://static.vecteezy.com/system/resources/thumbnails/071/128/406/small_2x/colorful-plastic-tableware-stacked-on-table-in-sunlight-photo.jpg') center/cover no-repeat;
    height: 80vh;
    display: flex;
    align-items: center;
    text-align: right;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(13,71,161,0.9) 0%, rgba(25,118,210,0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    color: #fff;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.btn {
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--accent-color);
    color: #fff;
    border: 2px solid var(--accent-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--accent-color);
}

.btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
    margin-right: 15px;
}

.btn-secondary:hover {
    background-color: #fff;
    color: var(--primary-color);
}

/* Features */
.features-section {
    padding: 80px 0;
    text-align: center;
}

.section-header h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
}

.divider {
    height: 4px;
    width: 80px;
    background-color: var(--accent-color);
    margin: 15px auto 40px;
    border-radius: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: #fff;
    padding: 40px 20px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-bottom: 4px solid var(--accent-color);
}

.feature-card i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

/* Page Title (Inner Pages) */
.page-title {
    background-color: var(--primary-color);
    color: #fff;
    text-align: center;
    padding: 60px 0;
    margin-bottom: 50px;
}

/* Contact Page */
.contact-page {
    margin-bottom: 80px;
}

.contact-details {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    flex: 1;
    min-width: 300px;
}

.contact-item .icon {
    background-color: var(--secondary-color);
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-left: 20px;
}

.map-link {
    color: var(--accent-color);
    font-weight: bold;
    text-decoration: none;
}

/* Footer */
.main-footer {
    background-color: #092c63;
    color: #fff;
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-right: 10px;
}

.footer-bottom {
    background-color: #061e44;
    text-align: center;
    padding: 20px 0;
}

/* Responsive */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 15px;
    }
    .hero-content h1 {
        font-size: 2.2rem;
    }
    .hero-section {
        text-align: center;
    }
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    .btn-secondary {
        margin-right: 0;
    }
}