/*
Theme Name: Zawaya Clean Official
Author: Gemini Partner
Description: ثيم احترافي لشركة زوايا كلين للنظافة الشاملة
Version: 1.0
*/

:root {
    --primary-blue: #003366; /* أزرق فاخر للهوية */
    --accent-blue: #00a8e8;  /* أزرق فاتح للتفاعل */
    --clean-white: #ffffff;
    --light-gray: #f4f7f6;
    --text-dark: #333333;
}

body {
    font-family: 'Segoe UI', Roboto, 'Cairo', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--light-gray);
    margin: 0;
    direction: rtl; /* دعم اللغة العربية */
}

.container { width: 85%; margin: auto; overflow: hidden; }

/* Header & Navigation */
header {
    background: var(--clean-white);
    color: var(--primary-blue);
    padding: 20px 0;
    border-bottom: 3px solid var(--primary-blue);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .logo { float: right; font-size: 24px; font-weight: bold; text-transform: uppercase; }

header nav { float: left; margin-top: 10px; }

header nav a {
    color: var(--primary-blue);
    text-decoration: none;
    padding: 5px 15px;
    font-weight: bold;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,51,102,0.8), rgba(0,51,102,0.8)), url('hero-bg.jpg');
    background-size: cover;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.btn-cta {
    background: var(--accent-blue);
    color: white;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
    transition: 0.3s;
}

.btn-cta:hover { background: var(--clean-white); color: var(--primary-blue); }

/* Services Grid */
.services { padding: 50px 0; background: white; }
.services h2 { text-align: center; color: var(--primary-blue); }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.service-card {
    padding: 20px;
    border: 1px solid #ddd;
    text-align: center;
    border-radius: 10px;
    transition: transform 0.3s;
}
.service-card:hover { transform: translateY(-10px); border-color: var(--accent-blue); }