/* ===== BEZORA — public site styles ===== */

:root {
    --navy: #0b1f3a;
    --navy-light: #14335c;
    --navy-dark: #071528;
    --gold: #c9a227;
    --gold-light: #e3c363;
    --bg: #f7f8fb;
    --white: #ffffff;
    --text: #1d2733;
    --text-muted: #5c6b7a;
    --border: #e4e8ee;
    --radius: 14px;
    --radius-sm: 8px;
    --shadow: 0 10px 30px rgba(11, 31, 58, 0.08);
    --shadow-lg: 0 20px 50px rgba(11, 31, 58, 0.16);
    --font-head: 'Poppins', Arial, sans-serif;
    --font-body: 'Inter', Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--navy); margin: 0 0 .5em; line-height: 1.25; }
p { margin: 0 0 1em; color: var(--text-muted); }
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--gold); color: var(--navy); padding: 10px 16px; z-index: 999; }
.skip-link:focus { left: 10px; top: 10px; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 28px; border-radius: 999px; font-weight: 600; font-family: var(--font-head); font-size: 15px; border: 2px solid transparent; cursor: pointer; white-space: nowrap; flex-shrink: 0; transition: transform .15s ease, box-shadow .15s ease, background .15s ease; }
.btn-primary { background: var(--gold); color: var(--navy-dark); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 10px 20px rgba(201,162,39,.35); }
.btn-outline { background: transparent; border-color: rgba(255,255,255,.5); color: inherit; }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-light); transform: translateY(-2px); }
.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn-block { width: 100%; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.96); backdrop-filter: blur(6px); border-bottom: 1px solid var(--border); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 14px 24px; }
.logo { display: flex; align-items: center; gap: 12px; font-family: var(--font-head); font-weight: 700; font-size: 21px; color: var(--navy); flex-shrink: 0; }
.logo-mark { width: 44px; height: 44px; flex-shrink: 0; }
.logo-img { height: 44px; width: auto; max-width: 190px; object-fit: contain; flex-shrink: 0; }
.logo-text-group { display: flex; flex-direction: column; line-height: 1.15; }
.logo-tagline { font-family: var(--font-body); font-size: 10px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--gold); margin-top: 2px; }
.main-nav { display: flex; gap: 20px; }
.main-nav a { font-weight: 500; color: var(--text); padding: 6px 2px; border-bottom: 2px solid transparent; }
.main-nav a:hover, .main-nav a.active { color: var(--navy); border-color: var(--gold); }
.header-cta { display: flex; align-items: center; gap: 18px; flex-shrink: 0; }
.phone-link { display: flex; align-items: center; gap: 6px; font-weight: 600; color: var(--navy); white-space: nowrap; flex-shrink: 0; }
.main-nav a { white-space: nowrap; }
.icon-sm { width: 18px; height: 18px; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; }

/* Hero */
.hero { background: radial-gradient(circle at 20% 20%, var(--navy-light), var(--navy) 60%, var(--navy-dark)); color: #fff; padding: 90px 0 110px; position: relative; overflow: hidden; }
.hero::before {
    content: "";
    position: absolute; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='2' cy='2' r='1.6' fill='%23ffffff' fill-opacity='0.12'/%3E%3C/svg%3E");
    background-size: 60px 60px;
    opacity: .5;
}
.hero::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 85% 30%, rgba(201,162,39,.25), transparent 45%); }
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.hero-eyebrow { display: inline-block; background: rgba(201,162,39,.15); color: var(--gold-light); border: 1px solid rgba(201,162,39,.4); padding: 6px 16px; border-radius: 999px; font-size: 13px; font-weight: 600; letter-spacing: .04em; margin-bottom: 18px; }
.hero h1 { color: #fff; font-size: 44px; margin-bottom: 18px; }
.hero p.lead { color: rgba(255,255,255,.78); font-size: 18px; max-width: 46ch; }
.hero-actions { display: flex; gap: 16px; margin-top: 28px; flex-wrap: wrap; }
.hero-visual { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); border-radius: 20px; padding: 28px; backdrop-filter: blur(4px); overflow: hidden; }
.hero-visual-icon { width: 56px; height: 56px; border-radius: 14px; background: var(--gold); color: var(--navy-dark); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.hero-visual-icon .icon { width: 30px; height: 30px; }
.hero-visual h3 { color: #fff; }
.hero-visual p { color: rgba(255,255,255,.7); margin-bottom: 0; }
.hero-visual-photo { width: 100%; height: 220px; object-fit: cover; border-radius: 12px; margin-bottom: 16px; }

/* Slider (used for the hero and testimonials) */
.slider { position: relative; }
.slider-viewport { overflow: hidden; }
.slider-track { display: flex; transition: transform .6s cubic-bezier(.4,0,.2,1); }
.slider-slide { flex: 0 0 100%; min-width: 0; }
.slider-controls { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 28px; }
.slider-arrow { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--border); background: #fff; color: var(--navy); display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 20px; line-height: 1; transition: background .2s ease, color .2s ease, transform .2s ease; flex-shrink: 0; }
.slider-arrow:hover { background: var(--navy); color: #fff; transform: scale(1.06); }
.slider-dots { display: flex; align-items: center; gap: 8px; }
.slider-dots button { width: 9px; height: 9px; border-radius: 5px; background: var(--border); border: none; padding: 0; cursor: pointer; transition: all .25s ease; }
.slider-dots button.active { background: var(--gold); width: 24px; }
.slider-light .slider-arrow { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.35); color: #fff; }
.slider-light .slider-arrow:hover { background: var(--gold); border-color: var(--gold); color: var(--navy-dark); }
.slider-light .slider-dots button { background: rgba(255,255,255,.3); }
.slider-light .slider-dots button.active { background: var(--gold); }

/* Stats bar */
.stats-bar { background: var(--white); margin-top: -60px; position: relative; border-radius: var(--radius); box-shadow: var(--shadow-lg); max-width: 1180px; margin-left: auto; margin-right: auto; padding: 32px 24px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; text-align: center; }
.stats-bar > div { position: relative; }
.stats-bar > div:not(:last-child)::after { content: ""; position: absolute; right: -8px; top: 12%; height: 76%; width: 1px; background: var(--border); }
.stat-num { font-family: var(--font-head); font-size: 32px; font-weight: 700; color: var(--navy); }
.stat-label { color: var(--text-muted); font-size: 14px; margin-top: 4px; }

/* Sections */
.section { padding: 90px 0; }
.section-tight { padding: 60px 0; }
.section-alt {
    background-color: var(--white);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='44' height='44'%3E%3Ccircle cx='2' cy='2' r='1.4' fill='%230b1f3a' fill-opacity='0.05'/%3E%3C/svg%3E");
}
.section-head { text-align: center; max-width: 680px; margin: 0 auto 48px; }
.eyebrow { display: inline-block; color: var(--gold); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; font-size: 13px; margin-bottom: 10px; }
.section-head h2 { font-size: 32px; }

/* Grids & cards */
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 26px; transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--gold); }
.card-icon { width: 54px; height: 54px; border-radius: 12px; background: rgba(11,31,58,.06); color: var(--navy); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.card-icon .icon { width: 28px; height: 28px; }
.card h3 { font-size: 19px; margin-bottom: 8px; }
.card .card-link { color: var(--gold); font-weight: 600; font-size: 14px; display: inline-flex; align-items: center; gap: 6px; margin-top: 10px; }

/* Cards with a photo/generated banner on top (services, countries, packages) */
.card.card-with-banner { padding: 0; overflow: hidden; }
.card.card-with-banner .card-body { padding: 26px; }
.card-banner {
    height: 150px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
    transition: transform .4s ease;
}
.card-banner-icon { width: 44px; height: 44px; }
.detail-banner { height: 240px; border-radius: var(--radius); margin-bottom: 24px; }
.card.card-with-banner:hover .card-banner,
.country-card:hover .card-banner,
.package-card:hover .card-banner { transform: scale(1.08); }
.category-tabs { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.category-tabs a { padding: 10px 20px; border-radius: 999px; border: 1px solid var(--border); font-weight: 600; font-size: 14px; color: var(--text-muted); background: var(--white); }
.category-tabs a.active, .category-tabs a:hover { background: var(--navy); color: #fff; border-color: var(--navy); }

/* Countries */
.country-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; text-align: center; display: block; transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.country-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--gold); }
.country-card .card-body { padding: 22px; }
.country-flag { width: 56px; height: 56px; margin: 0 auto 14px; border-radius: 50%; background: linear-gradient(145deg, var(--navy), var(--gold)); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 700; }

/* Packages */
.package-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.package-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--gold); }
.package-body { padding: 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.package-meta { display: flex; gap: 14px; font-size: 13px; color: var(--text-muted); flex-wrap: wrap; }
.package-price { font-family: var(--font-head); font-weight: 700; color: var(--navy); font-size: 20px; margin-top: auto; }
.badge { display: inline-block; background: rgba(201,162,39,.15); color: #8a6d10; font-size: 12px; font-weight: 700; padding: 4px 12px; border-radius: 999px; text-transform: uppercase; letter-spacing: .03em; width: fit-content; }

/* Why choose us / process */
.feature-row { display: flex; gap: 18px; align-items: flex-start; margin-bottom: 28px; }
.feature-icon { width: 46px; height: 46px; border-radius: 10px; background: var(--navy); color: var(--gold); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.feature-icon .icon { width: 24px; height: 24px; }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.process-step { position: relative; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px 22px; }
.process-step .step-num { font-family: var(--font-head); font-weight: 700; font-size: 30px; color: var(--gold); margin-bottom: 10px; }

/* Team */
.team-card { text-align: center; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px 20px; transition: transform .22s ease, box-shadow .22s ease; }
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.team-card.is-ceo { border-color: var(--gold); box-shadow: var(--shadow); }
.avatar-fallback { border-radius: 50%; background: linear-gradient(145deg, var(--navy), var(--navy-light)); color: var(--gold-light); display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 700; margin: 0 auto 16px; }
.avatar-img { border-radius: 50%; object-fit: cover; margin: 0 auto 16px; }
.team-position { color: var(--gold); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .03em; margin-bottom: 10px; }

/* Testimonials */
.testimonial-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 40px; text-align: center; }
.testimonial-card p { font-size: 18px; color: var(--text); line-height: 1.7; }
.testimonial-stars { color: var(--gold); margin-bottom: 16px; display: flex; gap: 3px; justify-content: center; }
.testimonial-stars .icon { width: 16px; height: 16px; }
.testimonial-person { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 18px; }
.testimonial-person .avatar-fallback, .testimonial-person .avatar-img { width: 44px; height: 44px; margin: 0; font-size: 15px; }
.testimonial-person strong { display: block; font-size: 14px; }
.testimonial-person span { font-size: 13px; color: var(--text-muted); }

/* CTA banner */
.cta-banner { background: linear-gradient(120deg, var(--navy), var(--navy-dark)); color: #fff; border-radius: 24px; padding: 56px; text-align: center; margin: 0 24px; }
.cta-banner h2 { color: #fff; }
.cta-banner p { color: rgba(255,255,255,.75); max-width: 52ch; margin: 0 auto 26px; }

/* Forms */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-group.full { grid-column: 1 / -1; }
label { font-weight: 600; font-size: 14px; color: var(--navy); }
input, select, textarea { font-family: var(--font-body); font-size: 15px; padding: 13px 16px; border: 1px solid var(--border); border-radius: var(--radius-sm); background: #fff; color: var(--text); width: 100%; }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,162,39,.18); }
textarea { resize: vertical; min-height: 120px; }
.alert { padding: 16px 20px; border-radius: var(--radius-sm); margin-bottom: 24px; font-weight: 500; }
.alert-success { background: #e6f6ec; color: #1c7a3c; border: 1px solid #b9e6c8; }
.alert-error { background: #fdeceb; color: #b3261e; border: 1px solid #f6c3bf; }

/* Page header (interior pages) */
.page-header { background: linear-gradient(120deg, var(--navy), var(--navy-light)); color: #fff; padding: 64px 0; text-align: center; }
.page-header h1 { color: #fff; margin-bottom: 8px; }
.page-header p { color: rgba(255,255,255,.75); margin: 0 auto; max-width: 60ch; }
.breadcrumb { font-size: 13px; color: rgba(255,255,255,.6); margin-bottom: 12px; }
.breadcrumb a { color: var(--gold-light); }

/* Detail pages */
.detail-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; align-items: start; }
.detail-main { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px; }
.detail-sidebar { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; position: sticky; top: 100px; }
.detail-sidebar dl { margin: 0; }
.detail-sidebar dt { font-size: 13px; color: var(--text-muted); margin-top: 14px; }
.detail-sidebar dd { margin: 2px 0 0; font-weight: 600; color: var(--navy); }
.inclusions-list li { display: flex; gap: 10px; margin-bottom: 10px; color: var(--text); }
.inclusions-list .icon { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }

/* FAQ accordion */
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-sm); margin-bottom: 12px; overflow: hidden; }
.faq-question { display: flex; justify-content: space-between; align-items: center; padding: 18px 22px; cursor: pointer; font-weight: 600; color: var(--navy); }
.faq-question .plus { transition: transform .2s ease; color: var(--gold); font-size: 20px; }
.faq-item.open .faq-question .plus { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .25s ease; padding: 0 22px; }
.faq-item.open .faq-answer { max-height: 400px; padding-bottom: 18px; }

/* Footer */
.site-footer { background: var(--navy-dark); color: rgba(255,255,255,.75); margin-top: 60px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px; padding: 64px 24px 40px; }
.footer-col h4 { color: #fff; font-size: 15px; margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col a:hover { color: var(--gold-light); }
.logo-footer { color: #fff; margin-bottom: 14px; }
.social-links { display: flex; gap: 10px; margin-top: 18px; }
.social-links a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 13px; }
.social-links a:hover { background: var(--gold); color: var(--navy-dark); }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 14px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0; text-align: center; font-size: 13px; }
.footer-bottom p { margin: 0; color: rgba(255,255,255,.6); }

/* WhatsApp floating button */
.whatsapp-float {
    position: fixed; right: 24px; bottom: 24px; z-index: 500;
    width: 58px; height: 58px; border-radius: 50%;
    background: #25D366; color: #fff;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 12px 28px rgba(37,211,102,.45);
    transition: transform .2s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float .icon { width: 30px; height: 30px; fill: #fff; stroke: none; }

/* Scroll-reveal animation (classes toggled by main.js) */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
.reveal-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
}

/* Utility */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* Responsive */
@media (max-width: 1100px) {
    .header-cta .phone-link { display: none; }
    .main-nav { gap: 14px; }
}
@media (max-width: 980px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero h1 { font-size: 38px; }
    .stats-bar { grid-template-columns: repeat(2, 1fr); }
    .stats-bar > div::after { display: none; }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .grid-2 { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: repeat(2, 1fr); }
    .detail-layout { grid-template-columns: 1fr; }
    .detail-sidebar { position: static; top: auto; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
    .main-nav { position: absolute; top: 100%; left: 0; right: 0; background: #fff; flex-direction: column; padding: 16px 24px; gap: 4px; border-bottom: 1px solid var(--border); display: none; }
    .main-nav.open { display: flex; }
    .nav-toggle { display: flex; }
    .header-cta .phone-link { display: none; }
    .logo-tagline { display: none; }
    .logo, .logo-mark { height: 36px; }
    .logo-mark { width: 36px; }
    .logo-img { height: 34px; max-width: 130px; }
}
@media (max-width: 760px) {
    .hero h1 { font-size: 32px; }
    .grid-4, .grid-3 { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr; }
    .form-grid { grid-template-columns: 1fr; }
    .cta-banner { padding: 36px 24px; margin: 0; border-radius: 0; }
    .footer-grid { grid-template-columns: 1fr; padding: 48px 24px 30px; }
    .section { padding: 60px 0; }
    .whatsapp-float { width: 50px; height: 50px; right: 16px; bottom: 16px; }
    .whatsapp-float .icon { width: 26px; height: 26px; }
    .testimonial-card { padding: 26px 22px; }
    .testimonial-card p { font-size: 16px; }
    .slider-arrow { width: 36px; height: 36px; font-size: 17px; }
    .slider-controls { gap: 12px; }
}
@media (max-width: 480px) {
    .header-inner { padding: 12px 16px; gap: 10px; }
    .header-cta .btn { display: none; }
}
