:root {
    --primary-color: #001f3f; /* Dark Navy from logo */
    --secondary-color: #800000; /* Maroon/Wine from logo */
    --accent-color: #ffffff;
    --text-color: #333333;
    --light-bg: #f8f9fa;
    --border-color: #ddd;
    --transition: all 0.3s ease;
}

/* Dark Mode */
body.dark-mode {
    background-color: var(--accent-color);
    color: var(--text-color);
}

body.dark-mode header {
    background: var(--accent-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

body.dark-mode .nav-links a {
    color: var(--text-color);
}

body.dark-mode .nav-links a:hover,
body.dark-mode .nav-links a.active {
    color: var(--secondary-color);
}

body.dark-mode .logo-text {
    color: var(--text-color);
}

body.dark-mode .service-card {
    background: var(--light-bg) !important;
    color: var(--text-color);
}

body.dark-mode form input,
body.dark-mode form select,
body.dark-mode form textarea {
    background: var(--light-bg);
    color: var(--text-color);
    border: 1px solid var(--border-color);
}

body.dark-mode form label {
    color: var(--text-color);
}

body.dark-mode .order-form {
    background: var(--light-bg) !important;
    color: var(--text-color);
}

body.dark-mode h2,
body.dark-mode h3,
body.dark-mode h4 {
    color: var(--text-color);
}

body.dark-mode p {
    color: var(--text-color);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cairo', sans-serif;
}

body {
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--accent-color);
    direction: rtl;
    text-align: right;
    transition: var(--transition);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
header {
    background: var(--accent-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1001;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    gap: 20px;
    flex-wrap: nowrap;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-container img {
    height: 60px;
    width: auto;
    display: block;
}

.logo-text {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 25px;
    flex: 1;
    justify-content: center;
}

.nav-links a {
    font-weight: 600;
    color: var(--primary-color);
    transition: var(--transition);
}

.nav-links a:hover, .nav-links a.active {
    color: var(--secondary-color);
}

.nav-cta {
    background: #25d366;
    color: white !important;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    transition: var(--transition);
}

.nav-cta:hover {
    background: #1ead51;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

/* Hero Section - See hero.css for detailed styles */

.btn {
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-block;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.btn-primary {
    background: var(--secondary-color);
    color: white;
    border: none;
}

.btn-outline {
    border: 2px solid white;
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Footer */
footer {
    background: var(--primary-color);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    margin-bottom: 20px;
    font-size: 1.3rem;
    border-bottom: 2px solid var(--secondary-color);
    display: inline-block;
    padding-bottom: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Language and Theme Toggle */
.navbar-controls {
    display: flex;
    gap: 10px;
    align-items: center;
}

.lang-toggle,
.theme-toggle {
    background: var(--light-bg);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 8px 12px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
}

.lang-toggle:hover,
.theme-toggle:hover {
    background: var(--primary-color);
    color: white;
}

.lang-toggle.active {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: white;
}

.theme-toggle {
    width: 45px;
    height: 45px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

body.dark-mode .lang-toggle,
body.dark-mode .theme-toggle {
    background: var(--light-bg);
    border-color: var(--text-color);
    color: var(--text-color);
}

body.dark-mode .lang-toggle:hover,
body.dark-mode .theme-toggle:hover {
    background: var(--text-color);
    color: var(--light-bg);
}

body.dark-mode .lang-toggle.active {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: white;
}

/* Coming Soon Banner */
.coming-soon-banner {
    background: linear-gradient(135deg, var(--secondary-color), #a00000);
    color: white;
    padding: 15px 0;
    text-align: center;
    font-weight: 600;
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.coming-soon-banner i {
    margin-right: 8px;
}

/* Blog Section */
.blog-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    padding: 80px 0;
}

.blog-card {
    background: var(--light-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.blog-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.blog-card-content {
    padding: 20px;
}

.blog-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-color);
}

body.dark-mode .blog-card-title {
    color: var(--secondary-color);
}

.blog-card-date {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
}

body.dark-mode .blog-card-date {
    color: #aaa;
}

.blog-card-excerpt {
    color: var(--text-color);
    margin-bottom: 15px;
    line-height: 1.6;
}

.blog-read-more {
    color: var(--secondary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.blog-read-more:hover {
    gap: 12px;
}

/* Blog Page */
.blog-page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 60px 0;
    text-align: center;
}

.blog-page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.blog-page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.blog-article {
    max-width: 800px;
    margin: 60px auto;
    background: var(--light-bg);
    padding: 40px;
    border-radius: 10px;
}

.blog-article-header {
    margin-bottom: 30px;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 20px;
}

.blog-article-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-color);
}

body.dark-mode .blog-article-title {
    color: var(--text-color);
}

.blog-article-meta {
    font-size: 0.95rem;
    color: #666;
}

body.dark-mode .blog-article-meta {
    color: #aaa;
}

.blog-article-content {
    line-height: 1.8;
    color: var(--text-color);
}

.blog-article-content h2 {
    font-size: 1.5rem;
    margin: 30px 0 15px;
    color: var(--primary-color);
}

body.dark-mode .blog-article-content h2 {
    color: var(--text-color);
}

.blog-article-content p {
    margin-bottom: 15px;
}

.blog-article-content ul,
.blog-article-content ol {
    margin: 15px 0 15px 30px;
}

.blog-article-content li {
    margin-bottom: 10px;
}
