/* ================= Reset ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    font-family: Arial, Helvetica, sans-serif;
}

/* ================= Variables ================= */
:root {
    --blue: #0d6efd;
    --light-blue: #dbeaff;
    --orange: #ff8a1d;
    --gray: #f7f7f7;
}

/* ================= Global ================= */
h1,
h2 {
    color: var(--blue);
}

/* ================= Header ================= */
header {
    background-color: var(--light-blue);
    padding: 20px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* links */
header nav a {
    color: #000;
    margin-left: 20px;
    font-size: 15px;
    transition: 0.3s;
}

/* Home ثابت */
header nav a.home-link {
    color: var(--blue);
    font-weight: bold;
    pointer-events: none;
}

/* hover للباقي */
header nav a:not(.home-link):hover {
    color: var(--blue);
}

/* ================= Hero ================= */
.hero {
    background-color: var(--light-blue);
    padding: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 90vh;
}

.hero .info {
    width: 50%;
}

.hero h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.hero p {
    color: #444;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Contact Us button */
.btn {
    background-color: var(--orange);
    color: white;
    padding: 12px 28px;
    font-weight: bold;
    border-radius: 4px;
    transition: 0.3s;
}

.btn:hover {
    background-color: var(--blue);
    color: #dbeaff;
}

.hero-img img {
    width: 420px;
}

/* ================= Offers ================= */
.offers {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: -70px;
}

.offer {

    height: 200px;
    width: 25%;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: var(--blue);
    font-size: 18px;
    transition: 0.3s;
    padding: 10px;
}

.offer i {
    font-size: 32px;
}

/* Improve ثابت */
.offer.not {
    background-color: var(--orange);
    color: white;
    pointer-events: none;
}

/* hover للباقي */
.offer.hover-orange:hover {
    background-color: var(--orange);
    color: white;
    transform: scale(1.05);
}

/* ================= About ================= */
.about {
    padding: 80px 60px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.about img {
    width: 350px;
}

.about p {
    margin: 20px 0;
    color: #444;
}

.about button {
    background-color: var(--blue);
    color: white;
    padding: 10px 22px;
    border: none;
    font-weight: bold;
    transition: 0.3s;
}

.about button:hover {
    background-color: var(--orange);
}

/* ================= More About ================= */
.more-about {
    background-color: var(--light-blue);
    padding: 80px 60px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.more-about img {
    width: 350px;
}

.more-about p {
    margin-bottom: 20px;
    color: #444;
}

.more-about button {
    background-color: var(--orange);
    color: white;
    padding: 10px 22px;
    border: none;
    font-weight: bold;
    transition: 0.3s;
}

.more-about button:hover {
    background-color: var(--blue);
}

/* ================= Services ================= */
.services {
    padding: 80px 60px;
    text-align: center;
}

.services-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.service {
    width: 260px;
    padding: 35px 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px #ccc;
    transition: 0.3s;
}

.service i {
    font-size: 40px;
    color: var(--blue);
    margin-bottom: 15px;
}

.service p {
    color: #444;
}

.service:hover {
    background-color: var(--orange);
    color: white;
}

.service:hover i,
.service:hover p {
    color: white;
}

.services button {
    margin-top: 30px;
    background-color: var(--blue);
    color: white;
    padding: 12px 30px;
    border: none;
    font-weight: bold;
    transition: 0.3s;
}

.services button:hover {
    background-color: var(--orange);
}

/* ================= Contact ================= */
.contact {
    background-color: var(--gray);
    padding: 80px 60px;
}

.contact h2 {
    text-align: center;
    margin-bottom: 40px;
}

.contact-info {
    display: flex;
    gap: 40px;
}

form {
    width: 50%;
}

form input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
}

.send-btn {
    background-color: var(--orange);
    color: white;
    padding: 12px 25px;
    border: none;
    font-weight: bold;
    transition: 0.3s;
}

.send-btn:hover {
    background-color: var(--blue);
}

iframe {
    width: 45%;
    min-width: 300px;
    height: 400px;
    box-shadow: 0px 0px 10px #ccc;
}


/* ================= Footer ================= */
footer {
    background-color: var(--blue);
    color: white;
    text-align: center;
    padding: 15px;
}



/* ================= Responsive ================= */
@media (max-width: 768px) {

    .hero,
    .about,
    .more-about,
    .contact-info {
        flex-direction: column;
        text-align: center;
    }

    .hero-img img,
    .about img,
    .more-about img,
    iframe,
    form {
        width: 100%;
    }

    .offers {
        margin-top: 20px;
        flex-direction: column;
    }
}