:root {
    --primary: #455a64;
    /* Blue Grey */
    --accent: #263238;
    /* Darker Blue Grey */
    --highlight: #cfd8dc;
    --white: #ffffff;
    --text: #37474f;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', sans-serif;
    color: var(--text);
    background-color: #f7f9fa;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.d-flex {
    display: flex;
}

.justify-between {
    justify-content: space-between;
}

.justify-around {
    justify-content: space-around;
}

.align-center {
    align-items: center;
}

.text-center {
    text-align: center;
}

.section-padding {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--highlight);
}

.bg-dark {
    background-color: var(--accent);
}

.text-white {
    color: var(--white);
}

/* Header */
.raw-header {
    background: var(--white);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo-box {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--accent);
}

.logo-box i {
    font-size: 2.5rem;
}

.logo-box h1 {
    font-size: 1.5rem;
    line-height: 1.2;
}

.logo-box small {
    color: var(--primary);
    font-size: 0.9rem;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.raw-header nav {
    display: flex;
    gap: 20px;
}

.raw-header nav a:hover {
    color: var(--primary);
    text-decoration: underline;
}

.lang-selector {
    cursor: pointer;
    color: var(--primary);
    font-weight: bold;
}

/* Hero */
.hero-raw {
    height: 500px;
    background: linear-gradient(rgba(38, 50, 56, 0.7), rgba(38, 50, 56, 0.7)),
        url('https://images.unsplash.com/photo-1504917595217-d4dc5ebe6122?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-raw {
    background: var(--white);
    color: var(--accent);
    padding: 12px 35px;
    border-radius: 5px;
    font-weight: bold;
}

.btn-raw:hover {
    background: var(--highlight);
}

/* Features */
.feat-card {
    text-align: center;
    padding: 30px;
    flex: 1;
    min-width: 250px;
}

.feat-card i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.feat-card h3 {
    margin-bottom: 10px;
    color: var(--accent);
}

/* Products */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.raw-item {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.raw-item:hover {
    transform: translateY(-5px);
}

.raw-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.raw-info {
    padding: 20px;
    text-align: center;
}

.raw-info h3 {
    color: var(--primary);
    margin-bottom: 5px;
}

/* Why Us */
.gap-50 {
    gap: 50px;
}

.why-list {
    list-style: none;
    margin-top: 20px;
}

.why-list li {
    margin-bottom: 15px;
    padding-right: 25px;
    position: relative;
    font-size: 1.1rem;
}

.why-list li::before {
    content: '■';
    color: var(--primary);
    position: absolute;
    right: 0;
    font-size: 0.8rem;
    top: 5px;
}

html[dir="ltr"] .why-list li {
    padding-right: 0;
    padding-left: 25px;
}

html[dir="ltr"] .why-list li::before {
    right: auto;
    left: 0;
}

.why-img {
    flex: 1;
}

.why-img img {
    width: 100%;
    border-radius: 10px;
}

.why-text {
    flex: 1;
}

/* Vision & Mission */
.vision-card {
    flex: 1;
    min-width: 300px;
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.vision-card i {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.vision-card h2 {
    color: var(--accent);
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.vision-card p {
    color: var(--text);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Contact */
.contact-data {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 40px 0;
    font-size: 1.2rem;
    flex-wrap: wrap;
}

.c-point {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-location {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 5px;
}

.map-wrapper {
    margin-top: 40px;
    border-radius: 10px;
    overflow: hidden;
}

/* Footer */
footer {
    background: var(--primary);
    color: var(--highlight);
    text-align: center;
    padding: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .container.d-flex {
        flex-direction: column;
        gap: 20px;
    }

    .why-raw .d-flex {
        flex-direction: column;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .vision-card {
        min-width: 100%;
        margin-bottom: 20px;
    }

    .vision-section .vision-container {
        flex-direction: column;
    }
}