/*
Theme Name: قالب المقاولات والإنشاءات
Theme URI: https://yourwebsite.com
Author: Expert WordPress
Author URI: https://yourwebsite.com
Description: قالب احترافي متكامل لشركات المقاولات والإنشاءات مع لوحة تحكم كاملة وسلايدر متحرك وتصميم عصري
Version: 1.0.0
License: GPL v2 or later
Text Domain: contractor-theme
*/

/* reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Tajawal', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: #ff6b35;
}

/* header styles */
.site-header {
    background: #1a1a2e;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* buttons */
.btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background: #ff6b35;
    color: #fff;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #ff5722;
    transform: translateY(-2px);
}

/* utility classes */
.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}