/* ===== RESET & VARIABLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --dark-blue: #0a2f44;
    --medium-blue: #1a4b6d;
    --light-blue: #2a6a8f;
    --green: #2ecc71;
    --dark-green: #27ae60;
    --white: #ffffff;
    --off-white: #f8fafc;
    --gray: #e2e8f0;
    --text-dark: #1e293b;
    --shadow: 0 10px 25px -5px rgba(10, 47, 68, 0.1);
    --shadow-lg: 0 20px 35px -8px rgba(10, 47, 68, 0.2);
}

/* ===== BASE STYLES ===== */
body {
    font-family: 'Cairo', sans-serif;
    background: var(--off-white);
    color: var(--text-dark);
    direction: rtl;
}

body.english {
    font-family: 'Inter', sans-serif;
    direction: ltr;
}

/* ===== HEADER & NAVIGATION ===== */
header {
    background: var(--dark-blue);
    color: white;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

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

.logo i {
    color: var(--green);
    font-size: 2rem;
}

.logo h1 {
    font-size: 1.5rem;
    color: white;
}

nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.nav-links a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: white;
    border-bottom: 2px solid var(--green);
}

.language-toggle {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: inherit;
    transition: 0.3s;
}

.language-toggle:hover {
    background: var(--green);
    border-color: var(--green);
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: white;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    right: -100%;
    width: 100%;
    background: var(--dark-blue);
    padding: 2rem;
    transition: 0.3s;
    z-index: 999;
}

.mobile-menu.active {
    right: 0;
    display: block;
}

.mobile-menu .nav-links {
    flex-direction: column;
}

/* ===== MAIN CONTENT ===== */
main {
    margin-top: 80px;
}

section {
    padding: 4rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    color: var(--dark-blue);
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: var(--green);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

/* ===== BUTTONS ===== */
.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.btn-primary {
    background: var(--green);
    color: var(--dark-blue);
}

.btn-primary:hover {
    background: var(--dark-green);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-3px);
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(135deg, var(--dark-blue), var(--medium-blue));
    color: white;
    padding: 5rem 5%;
    border-radius: 0 0 30px 30px;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== QUICK SERVICES CARDS ===== */
.quick-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: -3rem;
    position: relative;
    z-index: 10;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

.service-card h3 {
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
}

/* ===== FEATURED SERVICES ===== */
.featured-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.featured-service {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: 0.3s;
}

.featured-service:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    background: var(--dark-blue);
    color: white;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.service-content {
    padding: 2rem;
}

.service-content h3 {
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

.service-content p {
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.service-content ul {
    margin-bottom: 1.5rem;
    padding-right: 1.5rem;
    color: #4a5568;
}

.service-content li {
    margin-bottom: 0.3rem;
}

.service-btn {
    background: var(--green);
    color: var(--dark-blue);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    transition: 0.3s;
}

.service-btn:hover {
    background: var(--dark-green);
}

/* ===== BRANDS SECTION ===== */
.brands-container {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin-bottom: 3rem;
}

.brands-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.brand-tag {
    background: var(--off-white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    color: var(--dark-blue);
    font-weight: 600;
    border: 1px solid var(--gray);
    transition: 0.3s;
}

.brand-tag:hover {
    background: var(--dark-blue);
    color: white;
    transform: scale(1.05);
}

/* ===== GALLERY ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: 0.3s;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.gallery-image {
    height: 200px;
    background: var(--dark-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
}

.gallery-info {
    padding: 1.5rem;
}

.gallery-info h3 {
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
}

.gallery-info p {
    color: #4a5568;
    margin-bottom: 1rem;
}

.gallery-tag {
    display: inline-block;
    background: var(--green);
    color: var(--dark-blue);
    padding: 0.2rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: bold;
}

.gallery-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #4a5568;
    font-size: 1.1rem;
}

/* ===== ABOUT PAGE ===== */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    background: var(--dark-blue);
    border-radius: 12px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 8rem;
}

.about-content h3 {
    color: var(--dark-blue);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.about-content p {
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.qualities {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.quality-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.quality-item i {
    color: var(--green);
    font-size: 1.5rem;
}

/* ===== AREAS PAGE ===== */
.areas-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #4a5568;
    font-size: 1.1rem;
}

.address-card {
    background: var(--dark-blue);
    color: white;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 2rem;
}

.address-card i {
    font-size: 2rem;
    margin-left: 0.5rem;
}

.address-card span {
    font-size: 1.3rem;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.area-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: 0.3s;
}

.area-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.area-card i {
    color: var(--green);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.area-card h3 {
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
}

.area-card p {
    color: #4a5568;
}

.area-check-form {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.area-check-form h3 {
    color: var(--dark-blue);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.area-check-form input {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--gray);
    border-radius: 8px;
    margin-bottom: 1rem;
    font-family: inherit;
}

.area-check-form button {
    width: 100%;
}

.form-note {
    margin-top: 1rem;
    color: #666;
    font-size: 0.9rem;
}

/* ===== CONTACT PAGE ===== */
.business-card {
    background: linear-gradient(135deg, var(--dark-blue), var(--medium-blue));
    color: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 2rem;
}

.business-card i {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.business-card h3 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
}

.business-card p {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.business-card .phone {
    font-size: 2rem;
    font-weight: bold;
    margin: 1rem 0;
}

.business-card .btn {
    margin: 0 0.5rem;
}

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.contact-info h3 {
    color: var(--dark-blue);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-item i {
    color: var(--green);
    font-size: 1.2rem;
    margin-top: 5px;
}

.contact-item strong {
    color: var(--dark-blue);
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.contact-form h3 {
    color: var(--dark-blue);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 1rem;
    border: 1px solid var(--gray);
    border-radius: 8px;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--green);
}

.business-hours {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--gray);
}

.hours-item.emergency {
    border-bottom: none;
    color: var(--green);
    font-weight: bold;
}

.emergency-notice {
    background: #fff3cd;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1.5rem;
    border-right: 4px solid var(--green);
}

.emergency-notice h4 {
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ===== MAP ===== */
.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: 0;
}

/* ===== FLOATING BUTTONS ===== */
.floating-buttons {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    pointer-events: none;
    z-index: 999;
    display: flex;
    justify-content: space-between;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    transition: 0.3s;
    pointer-events: auto;
}

.floating-btn.call {
    background: var(--dark-blue);
}

.floating-btn.whatsapp {
    background: var(--green);
}

.floating-btn:hover {
    transform: scale(1.1) translateY(-5px);
}

/* ===== CTA SECTION ===== */
.cta-section {
    text-align: center;
    margin-top: 4rem;
    background: var(--dark-blue);
    color: white;
    padding: 3rem;
    border-radius: 12px;
}

.cta-section h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

/* ===== FOOTER ===== */
footer {
    background: var(--dark-blue);
    color: white;
    padding: 4rem 5% 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-column h3 {
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background: var(--green);
    bottom: 0;
    right: 0;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #ddd;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: white;
    padding-right: 10px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    color: white;
    font-size: 1.3rem;
    transition: 0.3s;
}

.social-links a:hover {
    color: var(--green);
    transform: translateY(-3px);
}

.contact-footer-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.8rem;
}

.copyright {
    text-align: center;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 992px) {
    .nav-links:not(.mobile-menu .nav-links) {
        display: none;
    }
    .hamburger {
        display: block;
    }
    .about-container {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    .quick-services {
        grid-template-columns: repeat(2, 1fr);
        margin-top: -2rem;
    }
    .about-container {
        grid-template-columns: 1fr;
    }
    .qualities {
        grid-template-columns: 1fr;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .quick-services {
        grid-template-columns: 1fr;
    }
    .hero-buttons {
        flex-direction: column;
    }
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    .floating-buttons {
        bottom: 1rem;
        left: 1rem;
        right: 1rem;
    }
    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}