/* ============================================================
   AL ARABIA GROUP — Public Site Stylesheet
   Palette drawn from the logo: navy + sky blue, cream background,
   gold as a premium accent for CTAs.
   ============================================================ */

:root {
    --navy: #1B4B7A;
    --navy-dark: #123454;
    --sky: #5BB8E8;
    --sky-light: #CFEBFA;
    --cream: #FAF6EE;
    --cream-alt: #F3ECDD;
    --gold: #C9A227;
    --gold-light: #E8CE7B;
    --text-dark: #1F2937;
    --text-muted: #6B7280;
    --white: #FFFFFF;
    --radius: 10px;
    --shadow: 0 4px 16px rgba(27, 75, 122, 0.08);
    --shadow-lg: 0 12px 32px rgba(27, 75, 122, 0.14);
    --font-heading: 'Poppins', 'Segoe UI', sans-serif;
    --font-body: 'Inter', 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--cream);
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--navy-dark);
    line-height: 1.25;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-block;
    padding: 13px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    border: none;
    transition: all 0.25s ease;
}
.btn-primary {
    background: var(--gold);
    color: var(--navy-dark);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--navy-dark); }
.btn-navy {
    background: var(--navy);
    color: var(--white);
}
.btn-navy:hover { background: var(--navy-dark); }

/* ---------- Header / Nav ---------- */
.site-header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}
.topbar {
    background: var(--navy-dark);
    color: var(--sky-light);
    font-size: 13px;
    padding: 6px 0;
}
.topbar .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.topbar a { color: var(--sky-light); }
.topbar a:hover { color: var(--gold-light); }

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
}
.navbar .logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-heading); }
.navbar .logo img { height: 46px; }
.navbar .logo-text { font-weight: 700; font-size: 20px; color: var(--navy-dark); }
.navbar .logo-text span { color: var(--gold); }

.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { font-weight: 500; color: var(--text-dark); position: relative; padding: 6px 0; }
.nav-links a:hover, .nav-links a.active { color: var(--navy); }
.nav-links a.active::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--gold);
}
.nav-cta { display: flex; gap: 10px; }
.nav-toggle { display: none; font-size: 26px; background: none; border: none; cursor: pointer; color: var(--navy); }

/* ---------- Hero ---------- */
.hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    color: var(--white);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
    min-height: 480px;
    display: flex;
    align-items: center;
}
.hero::after {
    content: '';
    position: absolute;
    right: -100px; top: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(91,184,232,0.25) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}
.hero-inner { max-width: 640px; position: relative; z-index: 3; }

/* ---------- Hero slideshow ---------- */
/* Hero Section */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Slideshow */
.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

/* Dark Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: rgba(20, 45, 70, 0.55);
    z-index: 1;
}

/* Hero Content */
.hero .container,
.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 48px;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 18px;
    color: #f0f0f0;
    margin-bottom: 30px;
    max-width: 650px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        min-height: 70vh;
    }

    .hero h1 {
        font-size: 34px;
    }

    .hero p {
        font-size: 16px;
    }
}

/* ---------- Section titles ---------- */
.section { padding: 70px 0; }
.section-alt { background: var(--cream-alt); }
.section-title { text-align: center; max-width: 640px; margin: 0 auto 46px; }
.section-title .eyebrow {
    color: var(--gold); font-weight: 700; letter-spacing: 1.5px; font-size: 13px; text-transform: uppercase;
}
.section-title h2 { font-size: 32px; margin: 8px 0 12px; }
.section-title p { color: var(--text-muted); }

/* ---------- Category chips ---------- */
.category-chips { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.category-chips a {
    padding: 10px 22px;
    border-radius: 50px;
    background: var(--white);
    border: 1px solid var(--sky-light);
    font-weight: 600;
    font-size: 14px;
    color: var(--navy);
}
.category-chips a.active, .category-chips a:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* ---------- Package cards ---------- */
.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 28px;
}
.package-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
}
.package-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.package-card .img-wrap { position: relative; height: 200px; overflow: hidden; background: var(--sky-light); }
.package-card .img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.package-card .badge {
    position: absolute; top: 12px; left: 12px;
    background: var(--gold); color: var(--navy-dark);
    font-size: 12px; font-weight: 700; padding: 5px 12px; border-radius: 50px;
}
.package-card .body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.package-card .category-label { font-size: 12px; color: var(--sky); font-weight: 700; text-transform: uppercase; margin-bottom: 6px; }
.package-card h3 { font-size: 18px; margin-bottom: 8px; }
.package-card .meta { font-size: 13px; color: var(--text-muted); margin-bottom: 14px; display: flex; gap: 14px; }
.package-card .price { font-weight: 700; color: var(--navy); font-size: 18px; margin: 10px 0 16px; }
.package-card .btn { margin-top: auto; text-align: center; }

/* ---------- Package detail page ---------- */
.package-detail-hero { background: var(--navy-dark); color: var(--white); padding: 40px 0; }
.package-detail-hero .breadcrumb a { color: var(--sky-light); }
.package-detail-hero h1 { color: var(--white); margin-top: 10px; }
.detail-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; margin-top: 40px; }
.detail-main img { border-radius: var(--radius); margin-bottom: 24px; width: 100%; height: 380px; object-fit: cover; }
.detail-block {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 26px 28px;
    margin-bottom: 24px;
}
.detail-block h3 { margin-bottom: 12px; font-size: 20px; border-left: 4px solid var(--gold); padding-left: 12px; }
.detail-block ul li { padding: 3px 0; padding-left: 24px; position: relative; line-height: 1.3; }
.detail-block ul.included li::before { content: '•'; position: absolute; left: 0; color: #16a34a; font-weight: 700; }
.detail-block ul.excluded li::before { content: '•'; position: absolute; left: 0; color: #dc2626; font-weight: 700; }
.booking-sidebar {
    background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow);
    padding: 26px; position: sticky; top: 100px; height: fit-content;
}
.booking-sidebar .price-tag { font-size: 26px; font-weight: 700; color: var(--navy); margin-bottom: 16px; }
.booking-sidebar .btn { width: 100%; text-align: center; margin-bottom: 10px; }

/* ---------- Forms ---------- */
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 600; margin-bottom: 6px; font-size: 14px; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 12px 14px; border: 1px solid #D9D2C2; border-radius: 8px;
    font-family: var(--font-body); font-size: 14px; background: var(--white);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none; border-color: var(--sky);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ---------- Cards: jobs, services, reviews ---------- */
.simple-card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 24px; }
.job-card { display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; flex-wrap: wrap; }
.job-card h3 { margin-bottom: 6px; }
.job-card .country-tag { color: var(--sky); font-weight: 600; font-size: 13px; }
.job-card .salary { color: var(--gold); font-weight: 700; }

.review-card { text-align: center; }
.review-card .stars { color: var(--gold); font-size: 18px; margin-bottom: 10px; }
.review-card p { font-style: italic; color: var(--text-muted); margin-bottom: 14px; }
.review-card .name { font-weight: 700; color: var(--navy); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-dark); color: var(--sky-light); padding: 60px 0 20px; margin-top: 60px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 40px; margin-bottom: 40px; }
.footer-grid h4 { color: var(--white); margin-bottom: 16px; font-size: 16px; }
.footer-grid p, .footer-grid a { color: var(--sky-light); font-size: 14px; }
.footer-grid ul li { margin-bottom: 10px; }
.footer-grid a:hover { color: var(--gold-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; text-align: center; font-size: 13px; color: rgba(255,255,255,0.5); }

.social-links {
    display: flex;
    gap: 55px;
    align-items: center;
}

.social-links a {
    color: #ffffff; /* Change to your desired color */
    font-size: 100px;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
    color: #f39c12; /* Hover color */
    transform: scale(1.15);
}
/* ---------- Contact ---------- */

.phone-link { transition: color 0.2s ease; }
.phone-link:hover, .phone-link:focus, .phone-link:active { color: #25D366; }

.wa-link {
    display: inline-flex; align-items: center; gap: 6px;
    color: #25D366; font-weight: 600; font-size: 14px;
    transition: color 0.2s ease;
}
.wa-link svg { width: 18px; height: 18px; flex-shrink: 0; }
.wa-link:hover { color: #1DA851; }
/* ---------- Alerts ---------- */
.alert { padding: 14px 18px; border-radius: 8px; margin-bottom: 20px; font-size: 14px; font-weight: 500; }
.alert-success { background: #DCFCE7; color: #166534; }
.alert-error { background: #FEE2E2; color: #991B1B; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
    .detail-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .nav-links, .nav-cta { display: none; }
    .nav-toggle { display: block; }
    .nav-links.open {
        display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0;
        background: var(--white); padding: 20px; box-shadow: var(--shadow-lg); gap: 16px;
    }
    .hero h1 { font-size: 30px; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
}
