/* ==========================================================================
   Giuan Reisebüro — Design System
   Brand colors sampled from the real logo: teal + orange
   ========================================================================== */

:root {
    --teal: #00a9c2;
    --teal-dark: #007c92;
    --teal-darker: #045a6b;
    --orange: #f7941e;
    --orange-dark: #e07a00;
    --ink: #16232b;
    --body-text: #4a5a62;
    --bg-soft: #f4f9fa;
    --bg-card: #ffffff;
    --border: #e3edef;
    --radius: 14px;
    --radius-sm: 8px;
    --shadow: 0 10px 30px rgba(10, 60, 70, 0.08);
    --shadow-hover: 0 16px 40px rgba(10, 60, 70, 0.14);
    --font-ar: 'Cairo', sans-serif;
    --font-de: 'Inter', sans-serif;
    --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    margin: 0;
    color: var(--body-text);
    background: #fff;
    font-family: var(--font-de);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}
body.lang-ar { font-family: var(--font-ar); }

h1, h2, h3, h4 { color: var(--ink); margin: 0 0 .6em; line-height: 1.35; font-weight: 800; }
p { margin: 0 0 1em; }
a { color: var(--teal-dark); text-decoration: none; }
img { max-width: 100%; display: block; }
ul { padding-inline-start: 1.1em; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 15px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--teal); color: #fff; box-shadow: 0 8px 20px rgba(0,169,194,.35); }
.btn-primary:hover { background: var(--teal-dark); color: #fff; }
.btn-cta { background: var(--orange); color: #fff; box-shadow: 0 8px 20px rgba(247,148,30,.4); }
.btn-cta:hover { background: var(--orange-dark); color: #fff; }
.btn-outline { background: transparent; color: var(--teal-dark); border-color: var(--teal); }
.btn-outline:hover { background: var(--teal); color: #fff; }
.btn-lg { padding: 16px 34px; font-size: 16px; }
.btn-block { width: 100%; justify-content: center; }

/* ---------- Topbar & Header ---------- */
.topbar { background: var(--teal-darker); color: #eafcff; font-size: 13.5px; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; padding: 8px 20px; flex-wrap: wrap; gap: 6px; }
.topbar-contacts { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar-contacts a, .topbar-address { color: #eafcff; opacity: .95; }
.topbar-contacts a:hover { opacity: 1; text-decoration: underline; }
.lang-switch { display: flex; gap: 6px; align-items: center; }
.lang-switch a { color: #cdf3fa; }
.lang-switch a.active { color: #fff; font-weight: 800; text-decoration: underline; }

.site-header { position: sticky; top: 0; z-index: 100; background: #fff; box-shadow: 0 2px 12px rgba(10,60,70,.06); }
.navbar { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; gap: 20px; }
.brand img { height: 46px; width: auto; }

.main-nav { display: flex; align-items: center; gap: 26px; }
.main-nav ul { list-style: none; display: flex; gap: 22px; margin: 0; padding: 0; }
.main-nav ul a { color: var(--ink); font-weight: 600; font-size: 15px; padding: 6px 2px; border-bottom: 2px solid transparent; }
.main-nav ul a:hover, .main-nav ul a.active { color: var(--teal-dark); border-color: var(--orange); }
.nav-cta { padding: 10px 22px; font-size: 14px; white-space: nowrap; }

.nav-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 40px; height: 40px; background: none; border: none; cursor: pointer; }
.nav-toggle span { display: block; height: 3px; border-radius: 2px; background: var(--ink); }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: linear-gradient(120deg, var(--teal-darker), var(--teal)); color: #fff; padding: 90px 0 110px; }
.hero::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 85% 20%, rgba(247,148,30,.35), transparent 55%); }
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; }
.hero h1 { color: #fff; font-size: clamp(30px, 4vw, 46px); margin-bottom: .35em; }
.hero p.lead { font-size: 18px; color: #e7fbff; max-width: 560px; }
.hero-badges { display: flex; gap: 14px; margin: 26px 0; flex-wrap: wrap; }
.hero-badge { background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.3); padding: 8px 16px; border-radius: 999px; font-size: 13.5px; font-weight: 600; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 10px; }
.hero-visual { position: relative; }
.hero-visual img { border-radius: var(--radius); box-shadow: var(--shadow-hover); }

/* small page hero (inner pages) */
.page-hero { background: linear-gradient(120deg, var(--teal-darker), var(--teal-dark)); color: #fff; padding: 60px 0; text-align: center; }
.page-hero h1 { color: #fff; margin-bottom: .3em; }
.page-hero p { color: #e7fbff; max-width: 640px; margin: 0 auto; }
.breadcrumb { font-size: 14px; opacity: .85; margin-top: 8px; }
.breadcrumb a { color: #fff; text-decoration: underline; }

/* ---------- Sections ---------- */
.section { padding: 74px 0; }
.section-soft { background: var(--bg-soft); }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 46px; }
.eyebrow { display: inline-block; color: var(--orange-dark); background: rgba(247,148,30,.12); padding: 6px 16px; border-radius: 999px; font-weight: 700; font-size: 13px; margin-bottom: 14px; }
.section-head h2 { font-size: clamp(24px, 3vw, 32px); }

/* ---------- Cards / Grid ---------- */
.grid { display: grid; gap: 26px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px 26px; box-shadow: var(--shadow); transition: transform .18s ease, box-shadow .18s ease; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.card-icon { width: 58px; height: 58px; border-radius: 16px; background: linear-gradient(135deg, var(--teal), var(--teal-dark)); display: flex; align-items: center; justify-content: center; font-size: 26px; margin-bottom: 18px; color: #fff; }
.card h3 { font-size: 19px; }
.card .card-link { display: inline-block; margin-top: 10px; font-weight: 700; color: var(--orange-dark); }
.card .card-link:hover { text-decoration: underline; }

/* trust strip */
.trust-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.trust-item { text-align: center; padding: 20px; }
.trust-item .num { font-size: 30px; font-weight: 800; color: var(--teal-dark); }
.trust-item .label { font-size: 14px; color: var(--body-text); }

/* partners */
.partners { display: flex; align-items: center; justify-content: center; gap: 34px; flex-wrap: wrap; }
.partners img { height: 56px; width: auto; border-radius: 8px; filter: grayscale(15%); opacity: .9; }

/* CTA banner */
.cta-banner { background: linear-gradient(120deg, var(--orange-dark), var(--orange)); color: #fff; border-radius: var(--radius); padding: 46px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.cta-banner h3 { color: #fff; margin-bottom: 4px; }
.cta-banner p { color: #fff4e8; margin: 0; }
.cta-banner .btn-primary { background: #fff; color: var(--orange-dark); }
.cta-banner .btn-primary:hover { background: #12303a; color: #fff; }

/* FAQ accordion */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { width: 100%; text-align: inherit; background: none; border: none; padding: 18px 0; display: flex; justify-content: space-between; align-items: center; font-weight: 700; color: var(--ink); font-size: 16px; cursor: pointer; }
.faq-q::after { content: "+"; color: var(--orange); font-size: 22px; font-weight: 800; margin-inline-start: 12px; transition: transform .2s ease; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq-item.open .faq-a { max-height: 800px; }
.faq-a-inner { padding-bottom: 18px; }

/* pricing / info list */
.info-list { list-style: none; padding: 0; margin: 0; }
.info-list li { padding: 10px 0; border-bottom: 1px dashed var(--border); display: flex; gap: 10px; }
.info-list li::before { content: "✓"; color: var(--teal-dark); font-weight: 800; }

.tag-row { display: flex; flex-wrap: wrap; gap: 10px; }
.tag { background: var(--bg-soft); border: 1px solid var(--border); padding: 8px 16px; border-radius: 999px; font-size: 14px; font-weight: 600; color: var(--teal-darker); }

/* Forms */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }
label { display: block; font-weight: 700; font-size: 14px; margin-bottom: 6px; color: var(--ink); }
input, textarea, select {
    width: 100%; padding: 13px 16px; border: 1.5px solid var(--border); border-radius: var(--radius-sm);
    font-family: inherit; font-size: 15px; background: #fbfdfe; transition: border-color .15s ease;
}
input:focus, textarea:focus, select:focus { outline: none; border-color: var(--teal); background: #fff; }
textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 13.5px; color: #7d8b91; margin-top: 10px; }
.form-success { background: #e6f8ee; border: 1px solid #b6ecce; color: #146c3c; padding: 14px 18px; border-radius: var(--radius-sm); margin-bottom: 20px; font-weight: 600; }

/* contact page layout */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.contact-info-card { background: var(--bg-soft); border-radius: var(--radius); padding: 30px; }
.contact-info-card li { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border); align-items: flex-start; }
.contact-info-card li:last-child { border-bottom: none; }
.contact-info-card .icon { font-size: 20px; }
.map-embed { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); margin-top: 20px; }
.map-embed iframe { width: 100%; height: 280px; border: 0; display: block; }

/* whatsapp float */
.whatsapp-float {
    position: fixed; bottom: 90px; inset-inline-end: 22px; z-index: 200;
    background: #25d366; color: #fff; width: 58px; height: 58px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 24px rgba(37,211,102,.5);
    animation: pulse 2.4s infinite;
}
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5);} 70% { box-shadow: 0 0 0 14px rgba(37,211,102,0);} 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0);} }

.back-to-top { position: fixed; bottom: 90px; inset-inline-start: 22px; z-index: 200; background: var(--teal-darker); color: #fff; width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity .2s ease; }
.back-to-top.show { opacity: .9; pointer-events: auto; }

/* mobile sticky CTA bar */
.mobile-cta-bar { display: none; position: fixed; bottom: 0; inset-inline: 0; z-index: 199; background: #fff; box-shadow: 0 -6px 20px rgba(0,0,0,.1); }
.mobile-cta-bar { display: none; grid-template-columns: 1fr 1fr; }
.mobile-cta-btn { padding: 15px; text-align: center; font-weight: 800; color: var(--teal-darker); }
.mobile-cta-whatsapp { background: #25d366; color: #fff; }

/* ---------- Footer ---------- */
.site-footer { background: #0c2c34; color: #b9d3d8; padding-top: 60px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 34px; padding-bottom: 40px; }
.footer-col h4 { color: #fff; font-size: 16px; margin-bottom: 16px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: #b9d3d8; }
.footer-col a:hover { color: #fff; }
.footer-logo { height: 40px; margin-bottom: 14px; filter: brightness(0) invert(1); }
.footer-contact li { display: flex; align-items: flex-start; gap: 8px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 18px 0 90px; }
.footer-bottom p { margin: 0; font-size: 13.5px; text-align: center; color: #7fa0a8; }

/* ---------- About / general content ---------- */
.content-block { max-width: 820px; margin: 0 auto; }
.content-block h2 { margin-top: 1.4em; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: center; }
.stat-card { background: var(--bg-soft); border-radius: var(--radius); padding: 24px; text-align: center; }
.stat-card .num { font-size: 28px; font-weight: 800; color: var(--orange-dark); }

/* alert banner (for bug-fix note) */
.notice { background: #fff8e8; border: 1px solid #f5dfa6; color: #7a5c00; padding: 14px 18px; border-radius: var(--radius-sm); font-size: 14px; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-visual { order: -1; }
    .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .trust-strip { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .two-col { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
    .topbar-contacts { display: none; }
    .nav-toggle { display: flex; }
    .main-nav { position: fixed; top: 0; inset-inline-end: -100%; height: 100vh; width: 78%; max-width: 320px; background: #fff; flex-direction: column; align-items: stretch; padding: 90px 26px 26px; box-shadow: -10px 0 30px rgba(0,0,0,.15); transition: inset-inline-end .3s ease; z-index: 150; }
    .main-nav.open { inset-inline-end: 0; }
    .main-nav ul { flex-direction: column; gap: 4px; }
    .main-nav ul a { display: block; padding: 12px 0; border-bottom: 1px solid var(--border); }
    .nav-cta { margin-top: 18px; }
    .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; text-align: start; }
    .trust-strip { grid-template-columns: 1fr 1fr; }
    .form-grid { grid-template-columns: 1fr; }
    .cta-banner { flex-direction: column; text-align: center; }
    .mobile-cta-bar { display: grid; }
    .whatsapp-float { bottom: 96px; }
    .back-to-top { bottom: 96px; }
    body { padding-bottom: 0; }
}
