/* ================= GLOBAL ================= */
@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;500&family=Montserrat:wght@500;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Lora', serif;
}

html {
    scroll-behavior: smooth;
}

body {
    color: #222;
    background: #ffffff url('../images/arabic-pattern.svg') repeat;
    position: relative;
}

/* ================= BRAND HELPERS ================= */
.highlight {
    color: #e67e22;
    font-weight: 500;
}

/* ================= NAVBAR ================= */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 31, 63, 0.95);
    backdrop-filter: blur(6px);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 60px;
    z-index: 1000;
}

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
    font-family: 'Montserrat', sans-serif;
}

.logo-main {
    font-size: 1.9rem;
    font-weight: 700;
    color: #e67e22;
}

.logo-sub {
    font-size: 0.9rem;
    letter-spacing: 4px;
    color: #e67e22;
    opacity: 0.85;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    position: relative;
}

.nav-links a::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: #e67e22;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: #e67e22;
}

.nav-btn {
    background: #e67e22;
    color: #000 !important;
    padding: 10px 22px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* 🔥 ADDED HOVER HIGHLIGHT FOR NAV BUTTON */
.nav-btn:hover {
    background: #ff9f43;
    box-shadow: 0 8px 22px rgba(230,126,34,0.4);
    transform: translateY(-3px);
}

/* ================= HERO ================= */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)), url("../images/makkah.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 20px;
    position: relative;
    z-index: 1;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(230,126,34,0.2), rgba(15,61,62,0.4));
}

.hero-content {
    max-width: 820px;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.8rem;
    font-family: 'Montserrat', sans-serif;
}

.hero h1 span {
    color: #e67e22;
}

.hero p {
    margin: 28px 0 45px;
    font-size: 1.35rem;
}

/* ================= BUTTONS ================= */
.btn {
    display: inline-block;
    padding: 15px 38px;
    border-radius: 35px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn.primary {
    background: linear-gradient(135deg, #e67e22, #c86412);
    color: #000;
}

/* 🔥 ADDED STRONGER HOVER FOR VIEW PACKAGES */
.btn.primary:hover {
    background: linear-gradient(135deg, #ff9f43, #e67e22);
    box-shadow: 0 10px 28px rgba(230,126,34,0.45);
    transform: translateY(-6px);
}

.btn.secondary {
    border: 2px solid white;
    color: white;
    background: transparent;
}

/* 🔥 ADDED HOVER FOR INQUIRY BUTTON TO TURN ORANGE */
.btn.secondary:hover {
    background: #e67e22;
    color: white;
    box-shadow: 0 10px 28px rgba(230,126,34,0.45);
    transform: translateY(-6px);
}

.btn:hover {
    transform: translateY(-5px);
}

/* ================= SECTIONS ================= */
.section {
    padding: 130px 20px;
    text-align: center;
    position: relative;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 28px;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: "";
    display: block;
    width: 60%;
    height: 4px;
    margin: 14px auto 0;
    background: linear-gradient(90deg, #e67e22, #0f3d3e);
    border-radius: 10px;
}

.section-text {
    max-width: 720px;
    margin: auto;
    font-size: 1.2rem;
    line-height: 1.8;
}

/* ================= ABOUT ================= */
#about {
    background: linear-gradient(135deg, #000435, #ffffff);
}

/* ================= SERVICES ================= */
#services {
    background: linear-gradient(135deg, #ff9001, #ffffff);
}

/* ================= SERVICES ================= */
.cards {
    display: flex;
    justify-content: center;
    gap: 38px;
    flex-wrap: wrap;
    margin-top: 65px;
}

.card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    max-width: 300px;
    position: relative;
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
}

.card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #e67e22, #0f3d3e);
}

.card:hover {
    transform: translateY(-12px);
    box-shadow: 0 22px 45px rgba(0,0,0,0.18);
}

/* ================= TESTIMONIALS ================= */
.testimonials {
    background: linear-gradient(135deg, #f3f7f6, #ffffff);
    overflow: hidden;
    position: relative;
}

.testimonial-slider {
    overflow: hidden;
    margin-top: 60px;
    position: relative;
}

.testimonial-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
    will-change: transform;
}

.testimonial {
    background: white;
    min-width: 300px;
    padding: 35px 28px;
    border-radius: 18px;
    box-shadow: 0 14px 34px rgba(0,0,0,0.12);
    text-align: center;
    flex-shrink: 0;
    transition: transform 0.4s ease;
}

.testimonial:hover {
    transform: translateY(-8px);
}

.testimonial p {
    max-width: 260px;
    margin: 0 auto;
    font-size: 0.95rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.testimonial h4 {
    margin-top: 18px;
    color: #e67e22;
}

/* ================= FORM ================= */
.contact-form {
    max-width: 500px;
    margin: 55px auto 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 18px;
    border-radius: 12px;
    border: 1px solid #ccc;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #e67e22;
}

/* ================= FOOTER ================= */
footer {
    background: linear-gradient(135deg, #0f3d3e, #072525);
    color: white;
    padding: 35px;
    text-align: center;
}

.social-links {
    margin-bottom: 18px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-links a {
    color: #e67e22;
    font-size: 1.6rem;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
    opacity: 0.75;
    transform: translateY(-3px);
}

/* 🔵 Optional: Facebook-specific hover */
.social-links a.facebook:hover {
    color: #3b5998;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.6rem;
    }

    .navbar {
        padding: 15px 25px;
    }

    .cards {
        gap: 18px;
    }

    .testimonial-track {
        gap: 18px;
    }

    .testimonial {
        min-width: 260px;
    }
}

/* ================= SECTION GRADIENT ACCENTS ================= */
#about::before,
#services::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
}

#about::before {
    background: radial-gradient(circle at 20% 30%, rgba(15, 61, 62, 0.25), transparent 60%);
}

#services {
    background: linear-gradient(
        135deg,
        #ff9001 0%,
        #f2b37a 45%,
        #ffffff 85%
    );
}

#about > *,
#services > * {
    position: relative;
    z-index: 1;
}

/* ================= SOFT SECTION FADE OVERLAP ================= */

/* ABOUT fades OUT into white */
#about::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 180px;
    pointer-events: none;
    background: linear-gradient(
        to bottom,
        rgba(0, 31, 63, 0) 0%,
        rgba(255, 255, 255, 0.85) 70%,
        #ffffff 100%
    );
    z-index: 2;
}

/* SERVICES fades IN from white to orange */
#services::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 180px;
    pointer-events: none;
    background: linear-gradient(
        to top,
        rgba(230, 126, 34, 0) 0%,
        rgba(255, 255, 255, 0.85) 70%,
        #ffffff 100%
    );
    z-index: 2;
}
