/* ===== WEB 2.0 DESIGN — FLAT, SQUARE, CLASSIC ===== */
@import url('https://fonts.googleapis.com/css2?family=Georgia&family=Verdana&family=Roboto+Slab:wght@400;700;900&family=Open+Sans:wght@400;600;700&display=swap');

:root {
  --navy: #1b2838;
  --navy-light: #2a3f5f;
  --ice: #e8f1f8;
  --ice-dark: #d0e3f0;
  --sky: #4a90d9;
  --sky-dark: #356bb3;
  --orange: #e8740c;
  --orange-dark: #c55f00;
  --red: #c0392b;
  --white: #ffffff;
  --gray-bg: #f4f4f4;
  --gray-border: #cccccc;
  --gray-text: #555555;
  --dark-text: #222222;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Open Sans', Verdana, Geneva, sans-serif; font-size: 15px; color: var(--dark-text); line-height: 1.6; background: var(--white); }
h1,h2,h3,h4 { font-family: 'Roboto Slab', Georgia, serif; font-weight: 700; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ===== NAVBAR ===== */
.navbar-custom { background: var(--navy); border-bottom: 3px solid var(--orange); padding: 0; }
.navbar-custom .navbar-brand { font-family: 'Roboto Slab', serif; font-weight: 900; font-size: 1.1rem; color: white !important; letter-spacing: .02em; }
.navbar-custom .navbar-brand i { color: var(--orange); }
.nav-cta { background: var(--orange); color: white !important; font-weight: 700; font-size: .85rem; padding: 8px 20px !important; text-transform: uppercase; letter-spacing: .05em; transition: background .2s; border: none; }
.nav-cta:hover { background: var(--orange-dark); color: white !important; }

/* ===== BUTTONS — FLAT & SQUARE ===== */
.btn-orange { background: var(--orange); color: white; font-weight: 700; border: none; padding: 12px 28px; font-size: .95rem; text-transform: uppercase; letter-spacing: .04em; border-radius: 0; transition: background .2s; }
.btn-orange:hover { background: var(--orange-dark); color: white; }
.btn-navy { background: var(--navy); color: white; font-weight: 700; border: none; padding: 12px 28px; font-size: .95rem; text-transform: uppercase; letter-spacing: .04em; border-radius: 0; transition: background .2s; }
.btn-navy:hover { background: var(--navy-light); color: white; }
.btn-outline-white { border: 2px solid white; color: white; background: transparent; font-weight: 700; padding: 10px 28px; font-size: .95rem; text-transform: uppercase; letter-spacing: .04em; border-radius: 0; transition: all .2s; }
.btn-outline-white:hover { background: white; color: var(--navy); }
.btn-sky { background: var(--sky); color: white; font-weight: 700; border: none; padding: 12px 28px; font-size: .95rem; text-transform: uppercase; letter-spacing: .04em; border-radius: 0; transition: background .2s; }
.btn-sky:hover { background: var(--sky-dark); color: white; }

/* ===== HERO ===== */
.hero { position: relative; min-height: 80vh; display: flex; align-items: center; background: var(--navy); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .4; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(27,40,56,.92) 0%, rgba(27,40,56,.5) 100%); z-index: 1; }
.hero-content { position: relative; z-index: 2; }
.hero h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); color: white; line-height: 1.2; margin-bottom: .5rem; }
.hero h1 span { color: var(--orange); }
.hero .lead { font-size: 1.15rem; color: rgba(255,255,255,.8); max-width: 550px; margin-bottom: 1.5rem; }
.hero-price { display: inline-block; background: var(--orange); color: white; padding: 8px 20px; font-family: 'Roboto Slab', serif; font-size: 1.4rem; font-weight: 900; margin-bottom: 1.5rem; }
.hero-price s { color: rgba(255,255,255,.5); font-weight: 400; font-size: 1rem; margin-right: 8px; }
.hero-badges { display: flex; gap: 1.5rem; margin-top: 2rem; }
.hero-badge { color: rgba(255,255,255,.7); font-size: .85rem; display: flex; align-items: center; gap: 6px; }
.hero-badge i { color: var(--orange); }

/* ===== INFO BAR ===== */
.info-bar { background: var(--ice); border-top: 1px solid var(--gray-border); border-bottom: 1px solid var(--gray-border); padding: 14px 0; }
.info-item { font-size: .85rem; color: var(--gray-text); font-weight: 600; display: flex; align-items: center; gap: 6px; }
.info-item i { color: var(--sky); }

/* ===== SECTION ===== */
section { padding: 4rem 0; }
.section-header { margin-bottom: 2.5rem; }
.section-header h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: .5rem; }
.section-header p { color: var(--gray-text); font-size: 1rem; max-width: 600px; }
.section-header.text-center p { margin: 0 auto; }
.section-header .label { display: inline-block; background: var(--navy); color: white; padding: 3px 12px; font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; margin-bottom: .75rem; }

/* ===== DESTINATIONS GRID ===== */
.dest-card { border: 1px solid var(--gray-border); background: white; overflow: hidden; transition: box-shadow .2s; height: 100%; }
.dest-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,.1); }
.dest-card img { width: 100%; height: 200px; object-fit: cover; }
.dest-card-body { padding: 1.25rem; }
.dest-card-body h5 { font-size: 1rem; margin-bottom: .4rem; font-family: 'Roboto Slab', serif; }
.dest-card-body p { font-size: .9rem; color: var(--gray-text); margin: 0; }
.dest-tag { display: inline-block; background: var(--ice); border: 1px solid var(--ice-dark); padding: 2px 10px; font-size: .75rem; font-weight: 600; color: var(--navy); margin-top: .5rem; text-transform: uppercase; }

/* ===== FEATURES ===== */
.feature-box { border: 1px solid var(--gray-border); background: white; padding: 1.5rem; height: 100%; }
.feature-box i { font-size: 2rem; color: var(--sky); margin-bottom: .75rem; display: block; }
.feature-box h5 { font-size: .95rem; margin-bottom: .5rem; font-family: 'Roboto Slab', serif; }
.feature-box p { font-size: .88rem; color: var(--gray-text); margin: 0; }

/* ===== SPLIT SECTION ===== */
.split-img { width: 100%; height: 380px; object-fit: cover; border: 1px solid var(--gray-border); }
.check-list { list-style: none; padding: 0; margin: 1rem 0; }
.check-list li { padding: 5px 0; font-size: .93rem; display: flex; align-items: flex-start; gap: 8px; }
.check-list li i { color: var(--sky); margin-top: 3px; font-size: .85rem; }

/* ===== ITINERARY ===== */
.itin-card { border-left: 4px solid var(--sky); background: white; border: 1px solid var(--gray-border); border-left: 4px solid var(--sky); padding: 1.25rem; height: 100%; }
.itin-day { font-family: 'Roboto Slab', serif; font-size: .75rem; font-weight: 700; color: var(--sky); text-transform: uppercase; letter-spacing: .06em; margin-bottom: .3rem; }
.itin-card h6 { font-family: 'Roboto Slab', serif; font-weight: 700; margin-bottom: .3rem; font-size: .95rem; }
.itin-card p { font-size: .85rem; color: var(--gray-text); margin: 0; }

/* ===== TESTIMONIALS ===== */
.testi-section { background: var(--navy); color: white; }
.testi-card { border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.05); padding: 1.5rem; height: 100%; }
.testi-stars { color: var(--orange); font-size: .9rem; margin-bottom: .75rem; }
.testi-text { font-style: italic; color: rgba(255,255,255,.8); font-size: .92rem; line-height: 1.65; margin-bottom: 1rem; }
.testi-name { font-weight: 700; font-size: .9rem; }
.testi-role { font-size: .78rem; color: rgba(255,255,255,.45); }

/* ===== CTA BANNER ===== */
.cta-strip { background: var(--orange); color: white; text-align: center; padding: 3rem 0; }
.cta-strip h2 { color: white; margin-bottom: .5rem; }
.cta-strip p { opacity: .9; margin-bottom: 1.5rem; }

/* ===== FORM SECTION ===== */
.form-section { background: var(--ice); padding: 4rem 0; }
.form-box { background: white; border: 1px solid var(--gray-border); padding: 2rem; }
.form-box .form-header { text-align: center; margin-bottom: 1.5rem; border-bottom: 2px solid var(--navy); padding-bottom: 1rem; }
.form-box .form-header h4 { font-size: 1.2rem; margin-bottom: .25rem; }
.form-box .form-header p { font-size: .87rem; color: var(--gray-text); margin: 0; }
.form-box .form-control { border-radius: 0; border: 1px solid var(--gray-border); padding: .75rem .85rem; font-size: .95rem; }
.form-box .form-control:focus { border-color: var(--sky); box-shadow: 0 0 0 2px rgba(74,144,217,.15); }
.form-box .form-control.is-invalid { border-color: var(--red); }
.form-box .form-label { font-weight: 700; font-size: .85rem; text-transform: uppercase; letter-spacing: .03em; color: var(--dark-text); margin-bottom: 4px; }
.form-box .invalid-feedback { font-size: .8rem; }
.sidebar-list { list-style: none; padding: 0; }
.sidebar-list li { display: flex; align-items: center; gap: 10px; padding: 6px 0; font-size: .9rem; color: var(--gray-text); }
.sidebar-list li i { color: var(--sky); width: 18px; text-align: center; }

/* ===== FOOTER ===== */
.footer { background: var(--navy); color: white; padding: 1.5rem 0; text-align: center; border-top: 3px solid var(--orange); }
.footer-link { color: rgba(255,255,255,.6); font-size: .85rem; cursor: pointer; background: none; border: none; font-family: inherit; padding: 0; transition: color .2s; text-decoration: underline; }
.footer-link:hover { color: white; }
.footer-copy { color: rgba(255,255,255,.3); font-size: .78rem; margin-top: .75rem; }

/* ===== FLOATING CTA ===== */
.floating-cta { position: fixed; bottom: 20px; right: 20px; z-index: 900; opacity: 0; pointer-events: none; transition: opacity .3s; }
.floating-cta.visible { opacity: 1; pointer-events: auto; }
@media(max-width:768px) { .floating-cta { left: 12px; right: 12px; } .floating-cta .btn { width: 100%; display: block; } }

/* ===== MODAL ===== */
.modal-content { border-radius: 0; border: 1px solid var(--gray-border); }
.modal-header { border-bottom: 2px solid var(--navy); border-radius: 0; }
.modal-title { font-family: 'Roboto Slab', serif; font-size: 1.15rem; }
.modal-body h6 { font-family: 'Roboto Slab', serif; font-weight: 700; margin-top: 1rem; margin-bottom: .3rem; color: var(--dark-text); }
.modal-body p { color: var(--gray-text); font-size: .9rem; line-height: 1.65; }
.thank-icon { width: 70px; height: 70px; background: var(--ice); border: 2px solid var(--sky); color: var(--sky); display: flex; align-items: center; justify-content: center; font-size: 1.8rem; margin: 0 auto 1rem; }

/* ===== RESPONSIVE ===== */
@media(max-width:768px) {
  .hero { min-height: 70vh; }
  .hero h1 { font-size: 1.8rem; }
  .hero-badges { flex-wrap: wrap; gap: .75rem; }
  .split-img { height: 250px; }
}
