/* ===== City Tour Dubai — main stylesheet ===== */
:root {
  --navy: #0b2545;
  --navy-2: #13315c;
  --gold: #d4a017;
  --gold-2: #eab308;
  --sand: #faf6ef;
  --text: #2b2b2b;
  --muted: #6b7280;
  --white: #fff;
  --radius: 14px;
  --shadow: 0 6px 24px rgba(11, 37, 69, .10);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', system-ui, sans-serif; color: var(--text); line-height: 1.7; background: var(--white); }
img { max-width: 100%; display: block; }
a { color: var(--navy-2); }
.container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }
h1, h2, h3, h4 { color: var(--navy); line-height: 1.3; }

/* Buttons */
.btn { display: inline-block; padding: 12px 26px; border-radius: 50px; font-weight: 600; text-decoration: none; border: none; cursor: pointer; font-family: inherit; font-size: 1rem; transition: transform .15s ease, box-shadow .15s ease; }
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-gold { background: var(--gold); color: #fff; }
.btn-navy { background: var(--navy); color: #fff; }
.btn-outline { background: transparent; color: #fff; border: 2px solid #fff; }
.btn-lg { padding: 14px 32px; font-size: 1.05rem; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 100; background: var(--navy); box-shadow: 0 2px 12px rgba(0,0,0,.25); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding-top: 12px; padding-bottom: 12px; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-mark { background: var(--gold); color: #fff; font-weight: 800; border-radius: 10px; width: 42px; height: 42px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
.logo-text { color: #fff; font-weight: 700; font-size: 1.15rem; }
.logo-text em { color: var(--gold); font-style: normal; }
.site-nav { display: flex; align-items: center; gap: 22px; }
.site-nav a { color: #e8eef7; text-decoration: none; font-weight: 500; font-size: .95rem; }
.site-nav a:hover { color: var(--gold-2); }
.nav-cta { background: var(--gold); padding: 9px 20px; border-radius: 50px; color: #fff !important; font-weight: 600; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; }
.nav-toggle span { display: block; width: 26px; height: 3px; background: #fff; margin: 5px 0; border-radius: 2px; }

/* Hero */
.hero { position: relative; min-height: 560px; display: flex; align-items: center; background-size: cover; background-position: center; }
.hero-content { position: relative; color: #fff; max-width: 640px; padding: 80px 0; }
.hero-content h1 { color: #fff; font-size: 2.9rem; font-weight: 800; margin-bottom: 18px; }
.hero-content p { font-size: 1.15rem; margin-bottom: 28px; color: #f1f5fb; }
.hero-badges { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-badges span { background: rgba(255,255,255,.14); backdrop-filter: blur(4px); padding: 7px 16px; border-radius: 50px; font-size: .88rem; font-weight: 500; }

/* Page hero (inner pages) */
.page-hero { background-size: cover; background-position: center; background-color: var(--navy); color: #fff; padding: 70px 0 60px; }
.page-hero h1 { color: #fff; font-size: 2.3rem; margin-bottom: 14px; }
.breadcrumb { font-size: .88rem; margin-bottom: 10px; color: #c7d3e3; }
.breadcrumb a { color: #c7d3e3; }
.hero-meta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 24px; font-size: .95rem; }
.hero-meta span { background: rgba(255,255,255,.14); padding: 6px 14px; border-radius: 50px; }
.page-hero .btn { margin-right: 12px; margin-bottom: 8px; }

/* Sections */
.section { padding: 64px 0; }
.section-alt { background: var(--sand); }
.section-title { text-align: center; margin-bottom: 10px; font-size: 2rem; }
.section-sub { text-align: center; color: var(--muted); max-width: 680px; margin: 0 auto 44px; }

/* Tour cards */
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 26px; }
.tour-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); text-decoration: none; color: var(--text); display: flex; flex-direction: column; transition: transform .2s ease; }
.tour-card:hover { transform: translateY(-6px); }
.tour-card-img { height: 200px; background-size: cover; background-position: center; position: relative; }
.tour-badge { position: absolute; top: 14px; left: 14px; background: var(--gold); color: #fff; font-size: .78rem; font-weight: 600; padding: 5px 13px; border-radius: 50px; }
.tour-card-body { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.tour-card-body h3 { font-size: 1.12rem; }
.tour-duration { color: var(--muted); font-size: .9rem; }
.tour-excerpt { font-size: .92rem; color: var(--muted); flex: 1; }
.tour-price { font-size: 1rem; color: var(--navy); }
.tour-price strong { color: var(--gold); font-size: 1.25rem; }
.tour-card .btn { align-self: flex-start; margin-top: 6px; padding: 9px 22px; font-size: .92rem; }

/* Destinations split */
.dest-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.dest-card { position: relative; border-radius: var(--radius); overflow: hidden; min-height: 340px; display: flex; align-items: flex-end; text-decoration: none; background-size: cover; background-position: center; box-shadow: var(--shadow); }
.dest-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,37,69,0) 30%, rgba(11,37,69,.85)); }
.dest-card-body { position: relative; z-index: 2; padding: 28px; color: #fff; }
.dest-card-body h3 { color: #fff; font-size: 1.6rem; margin-bottom: 6px; }
.dest-card-body p { font-size: .95rem; color: #e5ecf6; margin-bottom: 12px; }

/* Features */
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 24px; }
.feature { background: #fff; border-radius: var(--radius); padding: 28px 24px; text-align: center; box-shadow: var(--shadow); }
.feature .icon { font-size: 2.2rem; margin-bottom: 12px; }
.feature h3 { font-size: 1.05rem; margin-bottom: 8px; }
.feature p { font-size: .9rem; color: var(--muted); }

/* Content pages */
.content-page { padding: 56px 20px 72px; max-width: 900px; }
.content-page h2 { margin: 36px 0 14px; font-size: 1.55rem; }
.content-page h3 { margin: 26px 0 10px; font-size: 1.2rem; }
.content-page p { margin-bottom: 16px; }
.content-page ul, .content-page ol { margin: 0 0 18px 24px; }
.content-page li { margin-bottom: 8px; }
.content-page a { color: var(--gold); font-weight: 500; }

/* Booking banner */
.booking-banner { background: var(--navy); border-radius: var(--radius); color: #fff; padding: 30px 34px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin: 44px 0; }
.booking-banner h3 { color: #fff; margin-bottom: 6px; }
.booking-banner p { color: #cbd8ea; font-size: .93rem; margin: 0; }

/* Related tours */
.related-tours { margin: 48px 0; }
.related-tours h2 { margin-bottom: 24px; }

/* Enquiry form */
.enquiry { background: var(--sand); border-radius: var(--radius); padding: 40px 36px; margin-top: 48px; }
.enquiry h2 { margin-bottom: 8px; }
.enquiry > p { color: var(--muted); margin-bottom: 22px; }
.enquiry-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.enquiry-form input, .enquiry-form select, .enquiry-form textarea { width: 100%; padding: 13px 16px; border: 1px solid #ddd5c4; border-radius: 10px; font-family: inherit; font-size: .95rem; background: #fff; }
.enquiry-form textarea { margin-bottom: 16px; resize: vertical; }

/* Newsletter */
.newsletter { background: linear-gradient(135deg, var(--navy), var(--navy-2)); color: #fff; padding: 46px 0; }
.newsletter-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.newsletter h2 { color: #fff; font-size: 1.5rem; margin-bottom: 4px; }
.newsletter p { color: #c7d3e3; font-size: .95rem; }
.newsletter-form { display: flex; gap: 10px; flex-wrap: wrap; }
.newsletter-form input { padding: 13px 18px; border-radius: 50px; border: none; min-width: 280px; font-family: inherit; font-size: .95rem; }

/* Blog */
.blog-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); text-decoration: none; color: var(--text); display: flex; flex-direction: column; transition: transform .2s; }
.blog-card:hover { transform: translateY(-5px); }
.blog-card-img { height: 190px; background-size: cover; background-position: center; }
.blog-card-body { padding: 20px 22px; }
.blog-card-body .meta { font-size: .82rem; color: var(--muted); margin-bottom: 8px; }
.blog-card-body h3 { font-size: 1.1rem; margin-bottom: 8px; }
.blog-card-body p { font-size: .9rem; color: var(--muted); }
.blog-post img { border-radius: var(--radius); margin: 20px 0; }

/* Footer */
.site-footer { background: #081a33; color: #b9c6d8; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px; padding: 56px 20px 40px; }
.site-footer h3 { color: #fff; font-size: 1.05rem; margin-bottom: 16px; }
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 9px; font-size: .92rem; }
.site-footer a { color: #b9c6d8; text-decoration: none; }
.site-footer a:hover { color: var(--gold-2); }
.site-footer p { font-size: .9rem; }
.social-links { display: flex; gap: 14px; margin-top: 16px; }
.social-links a { background: rgba(255,255,255,.08); padding: 7px 16px; border-radius: 50px; font-size: .85rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 18px 0; text-align: center; font-size: .85rem; }

/* WhatsApp float */
.whatsapp-float { position: fixed; bottom: 24px; right: 24px; background: #25d366; width: 58px; height: 58px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 18px rgba(0,0,0,.3); z-index: 200; }
.whatsapp-float:hover { transform: scale(1.08); }

/* Tables */
table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: .93rem; }
th, td { border: 1px solid #e5e0d3; padding: 11px 14px; text-align: left; }
th { background: var(--sand); color: var(--navy); }

/* Responsive */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .dest-grid { grid-template-columns: 1fr; }
  .hero-content h1 { font-size: 2.2rem; }
}
@media (max-width: 720px) {
  .nav-toggle { display: block; }
  .site-nav { display: none; position: absolute; top: 66px; left: 0; right: 0; background: var(--navy); flex-direction: column; padding: 18px 24px; gap: 16px; }
  .site-nav.open { display: flex; }
  .enquiry-form .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .page-hero h1 { font-size: 1.7rem; }
  .newsletter-form input { min-width: 0; flex: 1; }
}
