:root {
    --primary-color: #FFCC00; /* Yellow */
    --secondary-color: #111111; /* Dark Black */
    --text-dark: #222222;
    --text-light: #ffffff;
    --accent-red: #D32F2F;
}

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

body {
    background-color: #f9f9f9;
    color: var(--text-dark);
}

/* Top Header */
.top-header {
    background-color: var(--secondary-color);
    color: var(--text-light);
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 3px solid var(--primary-color);
}

.logo-container {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.logo img {
    max-height: 70px;
    width: auto;
    display: block;
}

.header-address {
    font-size: 12px;
    color: #ccc;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
}
.header-address i {
    color: var(--primary-color);
    margin-right: 4px;
}
.header-address:hover {
    color: var(--primary-color);
}

.top-contact {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone-numbers {
    text-align: right;
    font-weight: 600;
}
.phone-numbers a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 20px;
    display: block;
}

.btn-call {
    background-color: var(--accent-red);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    transition: 0.3s;
}
.btn-call:hover { background-color: #b71c1c; }

/* Navigation bar */
nav {
    background-color: var(--primary-color);
    padding: 12px;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
nav a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 15px;
    font-size: 14px;
}
nav a:hover { color: var(--accent-red); }

/* Hero Banner */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 60%, #e6b800 100%);
    padding: 60px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.hero-text {
    flex: 1;
    min-width: 300px;
}
.hero-text h2 {
    font-size: 24px;
    text-transform: uppercase;
    color: var(--secondary-color);
}
.hero-text h1 {
    font-size: 48px;
    font-weight: 800;
    color: var(--accent-red);
    line-height: 1.1;
    margin-bottom: 15px;
}
.hero-text p {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}
.btn-black {
    background-color: var(--secondary-color);
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
}

.hero-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}
.hero-image img {
    max-width: 85%;
    height: auto;
}

/* Services section spacing */
.services-section {
    padding: 60px 5%;
    text-align: center;
    background: #fff;
}
.section-title {
    font-size: 32px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}
.section-title::after {
    content: '';
    width: 50%;
    height: 3px;
    background: var(--accent-red);
    position: absolute;
    bottom: -5px;
    left: 25%;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}
.service-card {
    background: #fdfdfd;
    border: 1px solid #eee;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: left;
}
.service-icon {
    background: var(--primary-color);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 15px;
}
.service-card h3 {
    color: var(--accent-red);
    margin-bottom: 15px;
    font-size: 18px;
    text-transform: uppercase;
}
.service-card ul {
    list-style: none;
}
.service-card ul li {
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
}
.service-card ul li i {
    color: var(--accent-red);
    margin-right: 8px;
}

/* Highlights Banner */
.why-choose-us {
    background-color: var(--primary-color);
    padding: 30px 5%;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    text-align: center;
}
.feature-item {
    flex: 1;
    min-width: 150px;
}
.feature-item i {
    font-size: 30px;
    margin-bottom: 10px;
}
.feature-item p {
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
}

/* Quote Submission UI */
.quote-section {
    padding: 60px 5%;
    background: #f4f4f4;
    text-align: center;
}
.quote-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    text-align: left;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
}
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 15px;
}
.radio-group {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}
.btn-submit {
    background-color: var(--accent-red);
    color: white;
    border: none;
    width: 100%;
    padding: 15px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 5px;
    cursor: pointer;
    text-transform: uppercase;
}
.btn-submit:hover { background-color: #b71c1c; }

/* Testimonials Layout */
.reviews-section {
    background-color: var(--secondary-color);
    color: white;
    padding: 60px 5%;
    text-align: center;
}
.google-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 12px 25px;
    border-radius: 30px;
    margin-bottom: 30px;
}
.google-badge i { font-size: 24px; color: #4285F4; }
.google-badge span { font-weight: 700; color: var(--primary-color); }

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}
.review-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid #333;
    padding: 25px;
    border-radius: 8px;
    text-align: left;
}
.stars { color: var(--primary-color); margin-bottom: 10px; font-size: 18px; }

/* Interactive Map Styling */
.map-section {
    padding: 60px 5%;
    text-align: center;
    background-color: #fff;
}
.map-container {
    max-width: 1000px;
    margin: 0 auto;
    border: 4px solid var(--primary-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.map-container iframe {
    display: block;
    width: 100%;
}

/* Site Footer grid */
footer {
    background-color: #0a0a0a;
    color: #aaa;
    padding: 50px 5%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    border-top: 5px solid var(--primary-color);
}
.footer-col h4 {
    color: white;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: #aaa; text-decoration: none; }
.footer-col ul li a:hover { color: var(--primary-color); }
.footer-col p i { color: var(--primary-color); margin-right: 8px; }

/* Business Hours List */
.hours-list {
    list-style: none;
}
.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    border-bottom: 1px solid #222;
    font-size: 14px;
}
.hours-list li span.day {
    color: var(--primary-color);
    font-weight: 600;
}
.hours-list li span.time {
    color: #fff;
}

/* Floating Actions Buttons (تم تعديل حجم الأيقونات وإضافة تأثيرات الزر الثالث) */
.floating-actions {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 10000;
}
.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: white;
    box-shadow: 2px 4px 12px rgba(0,0,0,0.3);
    transition: transform 0.2s;
    text-decoration: none;
}
.float-btn:hover { transform: scale(1.05); }

/* ألوان الأزرار الثلاثة بالتتابع */
.float-map { background-color: #1a73e8; }      /* الأزرق للخرائط والاتجاهات */
.float-call { background-color: var(--accent-red); } /* الأحمر للاتصال الهاتفي */
.float-whatsapp { background-color: #25d366; }  /* الأخضر للواتساب */
