/* ============================================================
   AL BARAKAH TRAVELS — MAIN STYLESHEET
   ============================================================ */

:root {
  --green:       #1a6b3a;
  --green-dark:  #124d2b;
  --green-light: #e8f5ee;
  --gold:        #c9a84c;
  --white:       #ffffff;
  --gray-light:  #f4f6f8;
  --gray:        #6c757d;
  --gray-dark:   #333333;
  --text:        #222222;
  --shadow:      0 4px 20px rgba(0,0,0,0.10);
  --radius:      10px;
  --transition:  all 0.3s ease;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Open Sans','Segoe UI',sans-serif; color: var(--text); background: #fff; line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; padding: 0; margin: 0; }
img { max-width: 100%; height: auto; display: block; }
input, select, textarea, button { font-family: inherit; font-size: inherit; }

/* CONTAINER */
.container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }

/* ===== TOP BAR ===== */
#site-header { display: block; width: 100%; }
.top-bar { background: var(--green-dark); color: #fff; font-size: 13px; padding: 8px 0; width: 100%; }
.top-bar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 6px; }
.top-bar .top-left span { margin-right: 18px; display: inline-flex; align-items: center; gap: 5px; }
.top-bar .top-left span i { color: var(--gold); }
.top-bar .top-right a { color: #fff; margin-left: 14px; display: inline-flex; align-items: center; gap: 5px; transition: var(--transition); }
.top-bar .top-right a:hover { color: var(--gold); }

/* ===== HEADER ===== */
header { background: #fff; box-shadow: 0 2px 12px rgba(0,0,0,0.09); position: sticky; top: 0; z-index: 999; width: 100%; }
.navbar { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; min-height: 68px; }
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo span { font-size: 22px; font-weight: 800; color: var(--green); letter-spacing: -0.5px; white-space: nowrap; }
.logo span em { color: var(--gold); font-style: normal; }
nav { display: flex; align-items: center; }
nav ul { display: flex; gap: 4px; align-items: center; list-style: none; }
nav ul li a { display: block; padding: 8px 13px; border-radius: 6px; font-weight: 600; font-size: 14px; color: var(--gray-dark); transition: var(--transition); white-space: nowrap; }
nav ul li a:hover, nav ul li a.active { background: var(--green-light); color: var(--green); }
.nav-cta a { background: var(--green) !important; color: #fff !important; padding: 9px 20px !important; border-radius: 25px !important; }
.nav-cta a:hover { background: var(--green-dark) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; background: none; border: none; flex-shrink: 0; }
.hamburger span { display: block; width: 26px; height: 3px; background: var(--green); border-radius: 3px; transition: var(--transition); }

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 28px; border-radius: 30px; font-weight: 700; font-size: 15px; cursor: pointer; transition: var(--transition); border: 2px solid transparent; white-space: nowrap; }
.btn-gold { background: var(--gold); color: #fff; border-color: var(--gold); }
.btn-gold:hover { background: #b8923e; border-color: #b8923e; transform: translateY(-2px); }
.btn-green { background: var(--green); color: #fff; border-color: var(--green); }
.btn-green:hover { background: var(--green-dark); border-color: var(--green-dark); transform: translateY(-2px); }
.btn-outline { background: transparent; color: #fff; border-color: #fff; }
.btn-outline:hover { background: #fff; color: var(--green); }
.btn-outline-green { background: transparent; color: var(--green); border-color: var(--green); }
.btn-outline-green:hover { background: var(--green); color: #fff; }
.btn-submit { width: 100%; background: var(--green); color: #fff; padding: 13px; border-radius: 30px; font-size: 15px; font-weight: 700; border: none; cursor: pointer; transition: var(--transition); margin-top: 8px; display: block; }
.btn-submit:hover { background: var(--green-dark); transform: translateY(-2px); }

/* ===== HERO ===== */
.hero { background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 60%, #2d8a52 100%); color: #fff; padding: 64px 0 52px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -80px; right: -80px; width: 400px; height: 400px; background: rgba(255,255,255,0.04); border-radius: 50%; pointer-events: none; }
.hero-content { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.hero-text { padding-top: 8px; }
.hero-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.badge { background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3); padding: 5px 14px; border-radius: 20px; font-size: 12px; font-weight: 600; display: inline-flex; align-items: center; gap: 5px; }
.hero-text h1 { font-size: 38px; font-weight: 800; line-height: 1.2; margin-bottom: 16px; }
.hero-text h1 span { color: var(--gold); }
.hero-text > p { font-size: 15px; opacity: 0.9; margin-bottom: 26px; line-height: 1.7; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===== ENQUIRY CARD ===== */
.enquiry-card { background: #fff; border-radius: 16px; padding: 26px; box-shadow: 0 8px 40px rgba(0,0,0,0.22); }
.enquiry-card h3 { color: var(--green); font-size: 17px; font-weight: 700; margin-bottom: 16px; text-align: center; display: flex; align-items: center; justify-content: center; gap: 8px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group { margin-bottom: 10px; }
.form-group label { display: block; font-size: 11px; font-weight: 700; color: var(--gray); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.5px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 9px 11px; border: 1.5px solid #dde3e8; border-radius: 8px; font-size: 13.5px; color: var(--text); background: #fff; transition: var(--transition); outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(26,107,58,0.10); }
.form-group textarea { resize: vertical; }
.form-note { font-size: 11px; color: var(--gray); margin-top: 8px; text-align: center; line-height: 1.5; }

/* ===== TRUST BAR ===== */
.trust-bar { background: var(--gold); padding: 16px 0; }
.trust-bar .container { display: flex; justify-content: space-around; align-items: center; flex-wrap: wrap; gap: 14px; }
.trust-item { display: flex; align-items: center; gap: 10px; color: #fff; }
.trust-item i { font-size: 22px; flex-shrink: 0; }
.trust-item strong { display: block; font-size: 14px; font-weight: 700; }
.trust-item span { font-size: 12px; opacity: 0.9; }

/* ===== SECTIONS ===== */
section { padding: 70px 0; }
.section-header { text-align: center; margin-bottom: 44px; }
.section-header .tag { display: inline-block; background: var(--green-light); color: var(--green); padding: 5px 16px; border-radius: 20px; font-size: 12px; font-weight: 700; letter-spacing: 0.5px; margin-bottom: 10px; text-transform: uppercase; }
.section-header h2 { font-size: 32px; font-weight: 800; color: var(--gray-dark); line-height: 1.25; margin-bottom: 10px; }
.section-header h2 span { color: var(--green); }
.section-header p { color: var(--gray); font-size: 15px; max-width: 600px; margin: 0 auto; line-height: 1.7; }

/* ===== FILTER TABS ===== */
.filter-tabs { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 36px; }
.filter-tab { padding: 8px 20px; border: 2px solid var(--green); background: transparent; color: var(--green); border-radius: 25px; font-size: 13.5px; font-weight: 700; cursor: pointer; transition: var(--transition); }
.filter-tab.active, .filter-tab:hover { background: var(--green); color: #fff; }

/* ===== PACKAGE CARDS ===== */
.packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.pkg-card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; transition: var(--transition); border: 1px solid #eee; display: flex; flex-direction: column; }
.pkg-card:hover { transform: translateY(-6px); box-shadow: 0 14px 36px rgba(0,0,0,0.14); }
.pkg-img { position: relative; height: 180px; display: flex; align-items: center; justify-content: center; overflow: hidden; flex-shrink: 0; }
.pkg-img img { width: 100%; height: 100%; object-fit: cover; }
.pkg-img .pkg-badge { position: absolute; top: 12px; left: 12px; background: var(--gold); color: #fff; padding: 4px 12px; border-radius: 20px; font-size: 12px; font-weight: 700; z-index: 1; }
.pkg-img .pkg-stars { position: absolute; bottom: 10px; right: 12px; color: #ffd700; font-size: 13px; z-index: 1; text-shadow: 0 1px 3px rgba(0,0,0,0.4); }
.pkg-body { padding: 18px 18px 0; flex: 1; }
.pkg-body h3 { font-size: 15px; font-weight: 700; margin-bottom: 10px; color: var(--gray-dark); line-height: 1.4; }
.pkg-features { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.pkg-features span { background: var(--green-light); color: var(--green); padding: 3px 10px; border-radius: 12px; font-size: 11.5px; font-weight: 600; display: inline-flex; align-items: center; gap: 4px; }
.pkg-body p { font-size: 13px; color: var(--gray); line-height: 1.6; margin-bottom: 14px; }
.pkg-footer { display: flex; justify-content: space-between; align-items: center; padding: 14px 18px; border-top: 1px solid #f0f0f0; background: var(--gray-light); margin-top: auto; }
.pkg-price { font-size: 22px; font-weight: 800; color: var(--green); line-height: 1; }
.pkg-price small { font-size: 11px; color: var(--gray); font-weight: 400; display: block; margin-top: 3px; }
.pkg-footer .btn { padding: 9px 18px; font-size: 13px; }
.pkg-detail-list { list-style: none; padding: 0; margin: 0 0 10px; }
.pkg-detail-list li { font-size: 12.5px; color: var(--gray); padding: 3px 0; display: flex; gap: 8px; align-items: flex-start; }
.pkg-detail-list li i { color: var(--green); width: 14px; flex-shrink: 0; margin-top: 2px; }

/* ===== WHY US ===== */
.why-us { background: var(--green-light); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why-card { background: #fff; border-radius: var(--radius); padding: 28px 20px; text-align: center; box-shadow: var(--shadow); transition: var(--transition); }
.why-card:hover { transform: translateY(-4px); }
.why-icon { width: 60px; height: 60px; background: var(--green-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.why-icon i { font-size: 24px; color: var(--green); }
.why-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 8px; color: var(--gray-dark); }
.why-card p { font-size: 13px; color: var(--gray); line-height: 1.6; }

/* ===== STATS ===== */
.stats-section { background: linear-gradient(135deg, var(--green-dark), var(--green)); color: #fff; padding: 60px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat-item .num { font-size: 46px; font-weight: 800; color: var(--gold); line-height: 1; display: block; }
.stat-item p { font-size: 14px; opacity: 0.9; margin-top: 6px; }

/* ===== DESTINATIONS ===== */
.destinations-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.dest-card { border-radius: var(--radius); overflow: hidden; position: relative; height: 200px; cursor: pointer; box-shadow: var(--shadow); display: block; }
.dest-placeholder { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; }
.dest-placeholder i { font-size: 48px; color: rgba(255,255,255,0.5); transition: var(--transition); }
.dest-card:hover .dest-placeholder i { transform: scale(1.1); }
.dest-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(0,0,0,0.75)); color: #fff; padding: 24px 16px 14px; }
.dest-overlay h4 { font-size: 15px; font-weight: 700; margin-bottom: 2px; }
.dest-overlay span { font-size: 12px; opacity: 0.85; }

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--gray-light); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card { background: #fff; border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); display: flex; flex-direction: column; }
.stars { color: var(--gold); font-size: 15px; margin-bottom: 12px; }
.review-card > p { font-size: 13.5px; color: var(--gray); font-style: italic; line-height: 1.75; margin-bottom: 16px; flex: 1; }
.reviewer { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.reviewer-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--green); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 16px; flex-shrink: 0; }
.reviewer strong { font-size: 14px; color: var(--gray-dark); display: block; }
.reviewer span { font-size: 12px; color: var(--gray); }

/* ===== FAQ ===== */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border: 1px solid #e0e8e4; border-radius: var(--radius); margin-bottom: 10px; overflow: hidden; }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 16px 20px; cursor: pointer; font-weight: 700; font-size: 14.5px; color: var(--gray-dark); background: #fff; transition: var(--transition); gap: 12px; user-select: none; }
.faq-q:hover { background: var(--green-light); color: var(--green); }
.faq-q i { transition: transform 0.3s ease; color: var(--green); flex-shrink: 0; }
.faq-q.open { background: var(--green); color: #fff; }
.faq-q.open i { transform: rotate(180deg); color: #fff; }
.faq-a { padding: 0 20px; max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; font-size: 14px; color: var(--gray); line-height: 1.8; background: #fff; }
.faq-a.open { max-height: 800px; padding: 16px 20px; }
.faq-a ul { margin-left: 18px; list-style: disc; margin-bottom: 8px; }
.faq-a ul li { margin-bottom: 4px; }

/* ===== BREADCRUMB ===== */
.breadcrumb-section { background: var(--green); padding: 24px 0; color: #fff; }
.breadcrumb-section h2 { font-size: 26px; font-weight: 800; }
.breadcrumb { display: flex; gap: 8px; align-items: center; margin-top: 6px; font-size: 13px; opacity: 0.85; }
.breadcrumb a { color: #fff; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { opacity: 0.6; }

/* ===== FOOTER ===== */
footer { background: var(--green-dark); color: #fff; padding: 56px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 36px; padding-bottom: 40px; }
.footer-brand p { font-size: 13.5px; opacity: 0.8; margin-top: 14px; margin-bottom: 18px; line-height: 1.7; }
.footer-logo { font-size: 24px; font-weight: 800; color: #fff; }
.footer-logo em { color: var(--gold); font-style: normal; }
.footer-social { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 4px; }
.footer-social a { width: 36px; height: 36px; background: rgba(255,255,255,0.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 14px; transition: var(--transition); }
.footer-social a:hover { background: var(--gold); }
footer h4 { font-size: 15px; font-weight: 700; margin-bottom: 16px; color: var(--gold); }
footer ul li { margin-bottom: 9px; }
footer ul li a { font-size: 13.5px; color: rgba(255,255,255,0.75); transition: var(--transition); }
footer ul li a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact li { font-size: 13.5px; color: rgba(255,255,255,0.8); display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; }
.footer-contact li i { color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.footer-newsletter input { width: 100%; padding: 10px 13px; border-radius: 8px; border: none; font-size: 13.5px; margin-bottom: 8px; color: var(--text); outline: none; }
.footer-newsletter button { width: 100%; padding: 10px; background: var(--gold); color: #fff; border: none; border-radius: 8px; font-weight: 700; cursor: pointer; font-size: 13.5px; transition: var(--transition); }
.footer-newsletter button:hover { background: #b8923e; }
.atol-notice { background: rgba(255,255,255,0.06); padding: 14px 20px; border-radius: 8px; font-size: 12px; color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 28px; }
.atol-notice a { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 18px 0; font-size: 13px; color: rgba(255,255,255,0.6); }
.footer-bottom .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; align-items: center; }
.footer-bottom a { color: rgba(255,255,255,0.6); margin-left: 14px; }
.footer-bottom a:hover { color: var(--gold); }

/* ===== WHATSAPP FLOAT ===== */
.wa-float { position: fixed; bottom: 24px; right: 24px; z-index: 9999; display: flex; flex-direction: column; align-items: flex-end; gap: 6px; }
.wa-float a { width: 56px; height: 56px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 26px; color: #fff; box-shadow: 0 4px 20px rgba(37,211,102,0.45); animation: waPulse 2.5s infinite; text-decoration: none; }
@keyframes waPulse { 0%,100% { box-shadow: 0 4px 18px rgba(37,211,102,0.45); } 50% { box-shadow: 0 4px 28px rgba(37,211,102,0.75); } }
.wa-tooltip { background: #fff; color: var(--text); padding: 5px 13px; border-radius: 20px; font-size: 12.5px; font-weight: 600; box-shadow: var(--shadow); white-space: nowrap; }

/* ===== OFFER POPUP ===== */
.offer-popup { position: fixed; bottom: 96px; right: 24px; background: #fff; border-radius: 14px; box-shadow: 0 8px 40px rgba(0,0,0,0.18); padding: 20px 22px; max-width: 230px; z-index: 9998; text-align: center; animation: slideUp 0.5s ease; border-top: 4px solid var(--gold); }
@keyframes slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.offer-popup h4 { font-size: 12px; color: var(--gray); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.5px; }
.offer-popup .off { font-size: 38px; font-weight: 800; color: var(--green); line-height: 1.1; }
.offer-popup p { font-size: 12px; color: var(--gray); margin: 6px 0 12px; line-height: 1.5; }
.offer-popup a { display: block; background: var(--gold); color: #fff; padding: 9px; border-radius: 8px; font-size: 12.5px; font-weight: 700; text-decoration: none; }
.offer-popup a:hover { background: #b8923e; }
.offer-close { position: absolute; top: 8px; right: 10px; font-size: 18px; cursor: pointer; color: var(--gray); line-height: 1; background: none; border: none; }

/* ===== CONTENT PAGES ===== */
.content-section { padding: 60px 0; }
.policy-wrap { max-width: 880px; margin: 0 auto; }
.policy-wrap h2 { font-size: 21px; font-weight: 800; color: var(--green-dark); margin: 36px 0 12px; padding-bottom: 8px; border-bottom: 2px solid var(--green-light); }
.policy-wrap h3 { font-size: 16px; font-weight: 700; color: var(--green); margin: 20px 0 8px; }
.policy-wrap p { font-size: 14.5px; color: var(--gray); line-height: 1.85; margin-bottom: 14px; }
.policy-wrap ul { list-style: disc; margin-left: 22px; margin-bottom: 14px; }
.policy-wrap ol { list-style: decimal; margin-left: 22px; margin-bottom: 14px; }
.policy-wrap ul li, .policy-wrap ol li { font-size: 14.5px; color: var(--gray); line-height: 1.9; margin-bottom: 6px; }
.policy-meta { background: var(--green-light); border-left: 4px solid var(--green); padding: 14px 18px; border-radius: 8px; margin-bottom: 28px; font-size: 13.5px; color: var(--gray-dark); }
.policy-meta strong { color: var(--green); }
.policy-toc { background: var(--gray-light); border-radius: var(--radius); padding: 22px 26px; margin-bottom: 32px; }
.policy-toc h4 { font-size: 14px; font-weight: 700; color: var(--gray-dark); margin-bottom: 12px; }
.policy-toc ol { list-style: decimal; margin-left: 18px; }
.policy-toc ol li { font-size: 13.5px; line-height: 2; }
.policy-toc ol li a { color: var(--green); font-weight: 600; }
.policy-toc ol li a:hover { text-decoration: underline; }
.warning-box { background: #fff8e1; border-left: 4px solid var(--gold); padding: 14px 18px; border-radius: 8px; margin: 18px 0; font-size: 13.5px; color: #7a5c00; line-height: 1.6; }
.warning-box strong { display: block; margin-bottom: 4px; }

/* ===== ABOUT PAGE ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-img-box { background: linear-gradient(135deg, var(--green), var(--green-dark)); border-radius: 16px; min-height: 400px; display: flex; align-items: center; justify-content: center; }
.about-img-box i { font-size: 90px; color: rgba(255,255,255,0.2); }
.about-text h2 { font-size: 32px; font-weight: 800; color: var(--gray-dark); margin-bottom: 16px; }
.about-text h2 span { color: var(--green); }
.about-text > p { color: var(--gray); font-size: 14.5px; line-height: 1.8; margin-bottom: 14px; }
.about-checklist { list-style: none; padding: 0; margin: 18px 0; }
.about-checklist li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--gray-dark); margin-bottom: 9px; }
.about-checklist li i { color: var(--green); font-size: 15px; margin-top: 2px; flex-shrink: 0; }
.cert-badges { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 22px; }
.cert-badge { background: var(--green-light); border: 2px solid var(--green); border-radius: 10px; padding: 12px 18px; text-align: center; }
.cert-badge i { font-size: 24px; color: var(--green); display: block; margin-bottom: 5px; }
.cert-badge strong { font-size: 12px; color: var(--green-dark); font-weight: 700; }
.mission-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.mission-card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 28px 22px; text-align: center; border-top: 4px solid var(--green); }
.mission-card i { font-size: 34px; color: var(--green); margin-bottom: 14px; display: block; }
.mission-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 10px; color: var(--gray-dark); }
.mission-card p { font-size: 13.5px; color: var(--gray); line-height: 1.7; }
.timeline { position: relative; padding-left: 38px; }
.timeline::before { content: ''; position: absolute; left: 11px; top: 0; bottom: 0; width: 3px; background: var(--green-light); border-radius: 3px; }
.tl-item { position: relative; margin-bottom: 32px; }
.tl-dot { position: absolute; left: -38px; top: 3px; width: 24px; height: 24px; background: var(--green); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 11px; font-weight: 700; }
.tl-item span { font-size: 12px; color: var(--green); font-weight: 700; display: block; margin-bottom: 4px; }
.tl-item h4 { font-size: 16px; font-weight: 700; color: var(--gray-dark); margin-bottom: 4px; }
.tl-item p { font-size: 13.5px; color: var(--gray); line-height: 1.7; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.team-card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 28px 22px; text-align: center; }
.team-avatar { width: 76px; height: 76px; border-radius: 50%; background: var(--green); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 26px; font-weight: 800; margin: 0 auto 14px; }
.team-card h4 { font-size: 16px; font-weight: 700; color: var(--gray-dark); margin-bottom: 4px; }
.team-card > span { font-size: 13px; color: var(--gray); }
.team-card p { font-size: 13px; color: var(--gray); margin-top: 10px; line-height: 1.6; }

/* ===== CONTACT PAGE ===== */
.contact-methods { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 52px; }
.contact-method { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 26px 18px; text-align: center; border-top: 4px solid var(--green); transition: var(--transition); }
.contact-method:hover { transform: translateY(-4px); }
.contact-method i { font-size: 30px; color: var(--green); margin-bottom: 12px; display: block; }
.contact-method h4 { font-size: 14px; font-weight: 700; color: var(--gray-dark); margin-bottom: 6px; }
.contact-method a, .contact-method p { font-size: 13px; color: var(--gray); line-height: 1.6; display: block; }
.contact-method a:hover { color: var(--green); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-info-box { background: var(--green); color: #fff; padding: 32px; border-radius: var(--radius); height: fit-content; }
.contact-info-box h3 { font-size: 20px; font-weight: 800; margin-bottom: 22px; }
.hours-table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.hours-table th { background: rgba(255,255,255,0.15); color: #fff; padding: 9px 13px; text-align: left; font-weight: 700; }
.hours-table td { padding: 9px 13px; border-bottom: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.85); }
.open-badge { background: #28a745; color: #fff; font-size: 10px; padding: 2px 7px; border-radius: 10px; font-weight: 700; margin-left: 6px; }
.social-contact { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 16px; }
.social-contact a { display: inline-flex; align-items: center; gap: 6px; padding: 8px 16px; border-radius: 25px; font-size: 12.5px; font-weight: 600; transition: var(--transition); opacity: 0.92; }
.social-contact a:hover { opacity: 1; transform: translateY(-2px); }
.sc-fb  { background: #1877f2; color: #fff; }
.sc-ig  { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color:#fff; }
.sc-wa  { background: #25D366; color: #fff; }
.sc-yt  { background: #ff0000; color: #fff; }
.sc-tt  { background: #010101; color: #fff; }
.map-placeholder { background: var(--green-light); border-radius: var(--radius); min-height: 300px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; border: 2px dashed var(--green); text-align: center; padding: 30px; }
.map-placeholder i { font-size: 44px; color: var(--green); opacity: 0.4; }
.map-placeholder h4 { font-size: 18px; font-weight: 800; color: var(--green-dark); }
.map-placeholder p { font-size: 13px; color: var(--gray); max-width: 300px; line-height: 1.6; }

/* ===== PACKAGES SIDEBAR ===== */
.packages-layout { display: grid; grid-template-columns: 265px 1fr; gap: 32px; align-items: start; }
.packages-sidebar { background: var(--gray-light); border-radius: var(--radius); padding: 22px; position: sticky; top: 90px; }
.sidebar-filter { margin-bottom: 20px; }
.sidebar-filter h4 { font-size: 13.5px; font-weight: 700; color: var(--gray-dark); margin-bottom: 10px; padding-bottom: 7px; border-bottom: 2px solid var(--green); display: flex; align-items: center; gap: 6px; }
.sidebar-filter h4 i { color: var(--gold); }
.sidebar-filter label { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--gray-dark); margin-bottom: 7px; cursor: pointer; }
.sidebar-filter input[type="checkbox"] { accent-color: var(--green); width: 15px; height: 15px; flex-shrink: 0; }
.sidebar-filter select, .sidebar-filter input[type="range"] { width: 100%; padding: 8px 10px; border: 1.5px solid #dde3e8; border-radius: 8px; font-size: 13px; margin-top: 4px; outline: none; }
.sidebar-cta { background: var(--green); color: #fff; border-radius: var(--radius); padding: 18px; text-align: center; margin-top: 18px; }
.sidebar-cta h4 { font-size: 13.5px; margin-bottom: 6px; color: #fff; }
.sidebar-cta p { font-size: 12px; opacity: 0.85; margin-bottom: 0; }
.sidebar-cta a { display: block; padding: 9px; border-radius: 8px; font-weight: 700; font-size: 12.5px; margin-top: 10px; text-align: center; transition: var(--transition); }
.sidebar-cta a.wa-btn { background: #25D366; color: #fff; }
.sidebar-cta a.call-btn { background: transparent; border: 1px solid rgba(255,255,255,0.5); color: #fff; }
.sort-bar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 22px; flex-wrap: wrap; gap: 10px; }
.sort-bar p { font-size: 13.5px; color: var(--gray); margin: 0; }
.sort-bar strong { color: var(--gray-dark); }
.sort-bar select { padding: 8px 13px; border: 1.5px solid #dde3e8; border-radius: 8px; font-size: 13.5px; color: var(--gray-dark); outline: none; }
.packages-list-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }

/* ===== FAQ PAGE ===== */
.faq-cats { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 44px; }
.faq-cat { padding: 8px 20px; border: 2px solid var(--green); border-radius: 25px; font-size: 13.5px; font-weight: 600; color: var(--green); cursor: pointer; transition: var(--transition); background: transparent; }
.faq-cat.active, .faq-cat:hover { background: var(--green); color: #fff; }
.faq-section-title { font-size: 18px; font-weight: 800; color: var(--green-dark); margin: 38px 0 16px; display: flex; align-items: center; gap: 10px; }
.faq-section-title i { font-size: 17px; color: var(--gold); }
.contact-box { background: linear-gradient(135deg, var(--green), var(--green-dark)); color: #fff; border-radius: 16px; padding: 36px; text-align: center; margin-top: 56px; }
.contact-box h3 { font-size: 22px; font-weight: 800; margin-bottom: 12px; }
.contact-box p { opacity: 0.9; margin-bottom: 22px; font-size: 14.5px; }
.contact-box-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ===== THANK YOU ===== */
.thankyou-page { min-height: 80vh; display: flex; align-items: center; justify-content: center; padding: 60px 20px; background: var(--green-light); }
.thankyou-card { background: #fff; border-radius: 20px; box-shadow: 0 8px 40px rgba(0,0,0,0.12); padding: 52px 44px; max-width: 580px; width: 100%; text-align: center; }
.check-circle { width: 84px; height: 84px; background: var(--green); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 26px; }
.check-circle i { font-size: 38px; color: #fff; }
.thankyou-card h1 { font-size: 30px; font-weight: 800; color: var(--green-dark); margin-bottom: 14px; }
.thankyou-card > p { color: var(--gray); font-size: 15px; line-height: 1.75; margin-bottom: 14px; }
.what-next { background: var(--green-light); border-radius: 12px; padding: 22px; margin: 24px 0; text-align: left; }
.what-next h4 { font-size: 14px; font-weight: 700; color: var(--green-dark); margin-bottom: 14px; }
.next-step { display: flex; gap: 13px; align-items: flex-start; margin-bottom: 12px; }
.step-num { width: 26px; height: 26px; background: var(--green); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; flex-shrink: 0; }
.next-step p { font-size: 13.5px; color: var(--gray-dark); margin: 0; line-height: 1.5; }
.thankyou-links { display: flex; gap: 13px; justify-content: center; flex-wrap: wrap; margin-top: 8px; }

/* ===== 404 ===== */
.error-page { min-height: 80vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 60px 20px; }
.error-content { max-width: 520px; }
.error-num { font-size: 110px; font-weight: 900; color: var(--green-light); line-height: 1; margin-bottom: 10px; }
.error-num span { color: var(--green); }
.error-icon { font-size: 52px; color: var(--gold); margin-bottom: 18px; }
.error-content h2 { font-size: 26px; font-weight: 800; color: var(--gray-dark); margin-bottom: 12px; }
.error-content > p { color: var(--gray); font-size: 15px; margin-bottom: 28px; line-height: 1.7; }
.error-links { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ===================================================================
   RESPONSIVE BREAKPOINTS
   =================================================================== */
@media (max-width: 1024px) {
  .why-grid              { grid-template-columns: repeat(2, 1fr); }
  .footer-grid           { grid-template-columns: 1fr 1fr; }
  .destinations-grid     { grid-template-columns: repeat(2, 1fr); }
  .packages-layout       { grid-template-columns: 1fr; }
  .packages-sidebar      { position: static; }
  .packages-list-grid    { grid-template-columns: repeat(2, 1fr); }
  .contact-methods       { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .hero-content          { grid-template-columns: 1fr; }
  .enquiry-card          { max-width: 560px; margin: 0 auto; }
  .packages-grid         { grid-template-columns: repeat(2, 1fr); }
  .stats-grid            { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid     { grid-template-columns: repeat(2, 1fr); }
  .about-grid            { grid-template-columns: 1fr; }
  .about-img-box         { min-height: 220px; }
  .mission-grid          { grid-template-columns: 1fr 1fr; }
  .team-grid             { grid-template-columns: repeat(2, 1fr); }
  .contact-grid          { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .hamburger             { display: flex; }
  nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #fff; padding: 14px 20px 18px; box-shadow: 0 8px 20px rgba(0,0,0,0.10); z-index: 998; }
  nav.open               { display: block; }
  nav ul                 { flex-direction: column; gap: 2px; }
  nav ul li a            { padding: 10px 14px; display: block; }
  .hero-text h1          { font-size: 28px; }
  .section-header h2     { font-size: 26px; }
  .packages-grid         { grid-template-columns: 1fr; }
  .packages-list-grid    { grid-template-columns: 1fr; }
  .why-grid              { grid-template-columns: 1fr; }
  .footer-grid           { grid-template-columns: 1fr; }
  .testimonials-grid     { grid-template-columns: 1fr; }
  .team-grid             { grid-template-columns: 1fr; }
  .mission-grid          { grid-template-columns: 1fr; }
  .trust-bar .container  { justify-content: flex-start; }
  .form-row              { grid-template-columns: 1fr; }
  .contact-methods       { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .destinations-grid     { grid-template-columns: 1fr; }
  .hero-btns             { flex-direction: column; }
  .hero-btns .btn        { width: 100%; justify-content: center; }
  .contact-methods       { grid-template-columns: 1fr; }
  .top-bar .top-left span:last-child { display: none; }
  .social-contact        { flex-direction: column; }
  .contact-box-btns      { flex-direction: column; align-items: center; }
}
