* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
:root { --primary: #006CE4; --primary-dark: #003580; --accent: #00A3FF; --bg: #F5F7FA; --text: #1F2937; }
body { margin: 0; font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif; color: var(--text); background: var(--bg); opacity: 0; animation: pageIn .5s ease forwards; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.site-header { background: #fff; color: #0f172a; position: sticky; top: 0; z-index: 20; box-shadow: 0 6px 18px rgba(0,0,0,0.06); border-bottom: 1px solid #e5e7eb; }
.site-header .brand { font-weight: 800; color: #0f172a; text-decoration: none; letter-spacing: 0.2px; }
.header-bar { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; }
.nav-checkbox { display: none; }
.nav-burger { width: 40px; height: 40px; border-radius: 10px; border: 1px solid #e5e7eb; display: grid; place-items: center; cursor: pointer; }
.nav-burger::before { content: "☰"; font-size: 20px; color: #0f172a; }
.site-nav { position: absolute; left: 0; right: 0; top: 100%; display: none; background: #fff; padding: 12px 16px; border-bottom: 1px solid #e5e7eb; }
.site-nav a { display: block; color: #334155; text-decoration: none; padding: 12px 10px; border-radius: 8px; }
.site-nav a:hover { color: var(--primary); background: #f1f5f9; }
.site-nav a.admin { border: 1px solid #e5e7eb; }
.nav-checkbox:checked ~ .site-nav { display: block; animation: fadeDown .2s ease both; }
@media (min-width: 768px) {
  .nav-burger { display: none; }
  .site-nav { position: static; display: flex !important; background: transparent; padding: 0; gap: 6px; align-items: center; }
  .site-nav a { color: #334155; margin: 0; padding: 14px 10px; border-radius: 6px; }
  .site-nav a:hover { background: #f1f5f9; color: var(--primary); }
}
main { width: 100%; max-width: 1200px; margin: 0 auto; padding: 24px 0; }
.site-footer { background: #0d0f12; color: #cbd5e1; padding: 48px 0; }
.footer-grid { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); align-items: start; }
.footer-brand .brand { color: #fff; font-weight: 700; text-decoration: none; }
.footer-links h4 { margin: 0 0 8px; font-size: 14px; font-weight: 700; color: #e5e7eb; letter-spacing: 0.4px; }
.footer-links { display: grid; gap: 10px; }
.footer-links a { color: #cbd5e1; text-decoration: none; }
.footer-links a:hover { color: #fff; }
.footer-copy { grid-column: 1 / -1; text-align: center; margin-top: 16px; color: #94a3b8; }
h1, h2, h3 { margin: 16px 0; }
h1 { font-weight: 800; letter-spacing: 0.2px; }
h2 { font-size: 30px; font-weight: 800; letter-spacing: 0.2px; }
.section h2 { position: relative; padding-bottom: 6px; }
.section h2::after { content: ""; position: absolute; left: 0; bottom: 0; width: 60px; height: 3px; background: linear-gradient(90deg, var(--primary), var(--accent)); border-radius: 9999px; }
.lead { font-size: 20px; line-height: 1.6; color: #374151; }
.muted { color: #6b7280; }
.section, .hero-content, .cta, .cards .card, .features-grid .feature, .stats-grid .stat { opacity: 0; transform: translateY(12px); animation: fadeUp .6s ease forwards; }
.cards .card:nth-child(1), .features-grid .feature:nth-child(1), .stats-grid .stat:nth-child(1) { animation-delay: .05s; }
.cards .card:nth-child(2), .features-grid .feature:nth-child(2), .stats-grid .stat:nth-child(2) { animation-delay: .1s; }
.cards .card:nth-child(3), .features-grid .feature:nth-child(3), .stats-grid .stat:nth-child(3) { animation-delay: .15s; }
.cards .card:nth-child(4), .features-grid .feature:nth-child(4), .stats-grid .stat:nth-child(4) { animation-delay: .2s; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pageIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeDown { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }
@keyframes sheen { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }
@keyframes bgMove { 0% { background-position: center; } 100% { background-position: center 12%; } }
.cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; }
.tiles { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px; }
.slider { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(280px, 1fr); gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
.slider .card { scroll-snap-align: start; }
.slider::-webkit-scrollbar { display: none; }
.listing-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.listing-card { border: 1px solid #e5e7eb; border-radius: 12px; background: #fff; box-shadow: 0 2px 6px rgba(0,0,0,0.04); overflow: hidden; transition: transform .25s ease, box-shadow .25s ease; }
.listing-card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(0,0,0,0.12); }
.listing-card .image-wrap { position: relative; }
.listing-card .image-wrap img { width: 100%; height: 180px; object-fit: cover; display: block; }
.listing-card .category { position: absolute; left: 12px; top: 12px; background: rgba(0,108,228,0.9); color: #fff; padding: 6px 10px; font-size: 12px; border-radius: 9999px; }
.listing-card .body { padding: 12px; }
.listing-card .body h3 { margin: 0 0 6px; font-size: 18px; }
.listing-card .meta { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; font-size: 13px; color: #6b7280; margin-top: 8px; }
.listing-card .meta .price { color: var(--primary); font-weight: 700; }
.listing-card .rating { display: inline-flex; gap: 6px; align-items: center; }
.rating-badge { background: #10b981; color: #fff; font-weight: 700; font-size: 12px; border-radius: 6px; padding: 2px 6px; }
.listing-card .actions { display: flex; gap: 8px; margin-top: 10px; }
.card { border: 1px solid #e5e7eb; border-radius: 12px; padding: 12px; background: #fff; box-shadow: 0 2px 6px rgba(0,0,0,0.04); transition: transform .25s ease, box-shadow .25s ease; }
.tile { border: 1px solid #e5e7eb; border-radius: 12px; background: #fff; box-shadow: 0 2px 6px rgba(0,0,0,0.04); overflow: hidden; transition: transform .25s ease, box-shadow .25s ease; }
.tile:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(0,0,0,0.12); }
.tile-image { width: 100%; height: 160px; object-fit: cover; display: block; }
.tile-body { padding: 12px; }
.tile-body h3 { margin: 0 0 6px; font-size: 18px; }
.tile-meta { display: flex; justify-content: space-between; align-items: center; color: #6b7280; font-size: 13px; }
.tile-actions { display: flex; gap: 8px; margin-top: 10px; }
.price { color: var(--primary); font-weight: 800; }
.feature:hover, .testimonial:hover, .step:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(0,0,0,0.1); }
.card img { width: 100%; height: 140px; object-fit: cover; border-radius: 6px; }
.card-hover:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(0,0,0,0.12); }
.btn { display: inline-block; background: var(--primary); color: #fff; padding: 10px 14px; border-radius: 8px; text-decoration: none; position: relative; overflow: hidden; }
.btn::after { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(255,255,255,0.18), transparent 40%, transparent 60%, rgba(255,255,255,0.18)); transform: translateX(-100%); }
.btn:hover::after { animation: sheen .8s ease; }
.btn-primary { background: var(--primary); }
.btn-secondary { background: #fff; color: var(--primary); border: 1px solid var(--primary); }
.btn-outline { background: transparent; color: var(--primary); border: 1px solid var(--primary); }

.nav-cta { display: none; }
@media (min-width: 768px) {
  .nav-cta { display: inline-block; margin-left: 8px; }
}

 


form label { display: block; margin-bottom: 10px; }
form input, form textarea, form select { width: 100%; padding: 8px; border: 1px solid #ccc; border-radius: 6px; }
img.hero { width: 100%; max-height: 320px; object-fit: cover; border-radius: 8px; }

.hero { background: url('https://images.unsplash.com/photo-1518544883931-1e136b1e2fd3?q=80&w=1600&auto=format&fit=crop') center/cover no-repeat; color: #fff; }
.hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0, 53, 128, 0.65), rgba(0,108,228,0.55)); }
.hero { position: relative; padding: 80px 0; overflow: hidden; animation: bgMove 24s ease-in-out infinite alternate; }
.hero-content { position: relative; z-index: 1; max-width: 860px; margin: 0 auto; text-align: center; }
.hero h1 { font-size: clamp(28px, 5vw, 56px); margin-bottom: 12px; }
.hero p { font-size: clamp(14px, 2.2vw, 20px); opacity: 0.95; }
.hero-actions { margin-top: 16px; display: flex; gap: 12px; justify-content: center; }

.home-hero { min-height: 60vh; display: grid; place-items: center; }

.hero-small { padding: 56px 0; background: linear-gradient(135deg, rgba(0,53,128,0.95), rgba(0,108,228,0.95)); color: #fff; }

.section { margin: 32px 0; }
.section h2 { font-size: 28px; margin-bottom: 10px; }
.card-body { padding: 10px 0; }
.card-actions { display: flex; gap: 10px; margin-top: 8px; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; }
.feature { background: #fff; border: 1px solid #e5e7eb; border-radius: 12px; padding: 16px; box-shadow: 0 2px 6px rgba(0,0,0,0.04); }
.list { list-style: none; padding: 0; margin: 0; }
.list-item { padding: 8px 0; border-bottom: 1px dashed #e5e7eb; }

.cta { background: linear-gradient(90deg, var(--primary-dark) 0%, var(--primary) 100%); color: #fff; padding: 40px 24px; text-align: center; border-radius: 16px; margin: 40px 0; }
.cta .btn { background: #fff; color: var(--primary); }

/* Expanded full-width page design components */
.section-wide { padding-left: 0; padding-right: 0; }
.lead { font-size: 20px; line-height: 1.6; color: #374151; }
.muted { color: #6b7280; }

.stats { background: #fff; border: 1px solid #e5e7eb; border-radius: 16px; padding: 24px; box-shadow: 0 2px 6px rgba(0,0,0,0.04); }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 16px; }
.stat { text-align: center; padding: 12px; }
.stat .num { font-size: 32px; font-weight: 800; color: var(--primary); }
.stat .label { color: #6b7280; }

.testimonials { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; }
.testimonial { background: #fff; border: 1px solid #e5e7eb; border-radius: 12px; padding: 16px; box-shadow: 0 2px 6px rgba(0,0,0,0.04); }
.testimonial .author { margin-top: 8px; font-weight: 600; color: var(--primary); }

.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.step { background: #f8fafc; border: 1px solid #e5e7eb; border-radius: 12px; padding: 16px; }
.step .index { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 50%; background: #0a5; color: #fff; font-weight: 700; margin-bottom: 8px; }

.media { display: grid; grid-template-columns: 1.5fr 1fr; gap: 20px; }
@media (max-width: 900px) { .media { grid-template-columns: 1fr; } }
.media img { width: 100%; height: 280px; object-fit: cover; border-radius: 12px; transition: transform .3s ease; }
.media img:hover { transform: scale(1.02); }

.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 10px; }
.gallery img { width: 100%; height: 140px; object-fit: cover; border-radius: 10px; transition: transform .3s ease; }
.gallery img:hover { transform: scale(1.02); }

.badge { display: inline-block; background: #e6fffa; color: #0a5; border: 1px solid #a7f3d0; padding: 4px 8px; border-radius: 9999px; font-size: 12px; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag { display: inline-block; background: #f1f5f9; color: #334155; padding: 4px 8px; border-radius: 9999px; font-size: 12px; }

.toolbar { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; padding: 12px; background: #fff; border: 1px solid #e5e7eb; border-radius: 12px; box-shadow: 0 2px 6px rgba(0,0,0,0.04); }
.filters { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 10px; margin: 12px 0; }
.filters input, .filters select { padding: 10px; border: 1px solid #d1d5db; border-radius: 10px; background: #f8fafc; }
.toolbar input, .toolbar select { padding: 10px; border: 1px solid #d1d5db; border-radius: 10px; background: #f8fafc; }
.toolbar .spacer { flex: 1; }

.booking-box { background: #fff; border: 1px solid #e5e7eb; border-radius: 12px; padding: 16px; box-shadow: 0 2px 6px rgba(0,0,0,0.04); }
.booking-box .price { font-size: 22px; font-weight: 800; color: var(--primary); }
.booking-box .benefits { display: grid; gap: 6px; margin-top: 8px; color: #6b7280; }

/* Home page additions */
.searchbar { display: grid; grid-template-columns: 1fr auto; gap: 10px; margin-top: 16px; }
.searchbar input[type="text"] { padding: 12px; border-radius: 10px; border: 1px solid #d1d5db; background: #f8fafc; }

.pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.pill { display: inline-block; padding: 8px 12px; border-radius: 9999px; background: rgba(255,255,255,0.14); color: #fff; border: 1px solid rgba(255,255,255,0.3); text-decoration: none; font-size: 14px; transition: transform .15s ease, box-shadow .2s ease, background .2s ease; }
.pill:hover { background: rgba(255,255,255,0.22); transform: translateY(-1px); box-shadow: 0 6px 14px rgba(255,255,255,0.2); }

.partners { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 12px; align-items: center; }
.partner { background: #fff; border: 1px solid #e5e7eb; border-radius: 10px; padding: 12px; text-align: center; color: #334155; font-weight: 600; box-shadow: 0 1px 3px rgba(0,0,0,0.04); }

.faq { display: grid; gap: 10px; }
.faq details { background: #fff; border: 1px solid #e5e7eb; border-radius: 10px; padding: 10px 12px; }
.faq summary { cursor: pointer; font-weight: 600; }

.newsletter { background: #0d0f12; color: #e5e7eb; padding: 24px; border-radius: 16px; display: grid; gap: 12px; }
.newsletter input[type="email"] { padding: 12px; border-radius: 8px; border: 1px solid #334155; background: #111827; color: #e5e7eb; }
.newsletter .btn { background: var(--primary); color: #fff; }

.table { width: 100%; border-collapse: collapse; background: #fff; border-radius: 12px; overflow: hidden; border: 1px solid #e5e7eb; }
.table th, .table td { padding: 10px 12px; border-bottom: 1px solid #e5e7eb; text-align: left; }
.table th { background: #f8fafc; color: #334155; }

/* Make hero and CTA full-bleed style */
.hero { margin-left: 0; margin-right: 0; border-radius: 0; }
.cta { border-radius: 0; margin: 40px 0 0 0; }

.contact-form { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.contact-form label { display: grid; gap: 8px; }
form input, form textarea, form select { width: 100%; padding: 12px; border: 1px solid #d1d5db; border-radius: 10px; background: #f8fafc; }
form input:focus, form textarea:focus, form select:focus { outline: 2px solid var(--accent); border-color: var(--accent); background: #fff; }
button, .btn { transition: transform .1s ease, box-shadow .2s ease; }
.btn:hover { transform: translateY(-1px); box-shadow: 0 6px 16px rgba(0,108,228,0.25); }

article { background: #fff; border: 1px solid #e5e7eb; border-radius: 12px; padding: 16px; box-shadow: 0 2px 6px rgba(0,0,0,0.04); }

@media (max-width: 640px) {
  .searchbar { grid-template-columns: 1fr; }
  .hero { padding: 56px 0; }
  .hero-actions { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

.partners .partner { transition: transform .2s ease, box-shadow .2s ease; }
.partners .partner:hover { transform: translateY(-2px); box-shadow: 0 8px 18px rgba(0,0,0,0.08); }
/* Overrides for Travela-like theme */
:root { --primary: #0F766E; --primary-dark: #0B4F49; --accent: #F59E0B; --bg: #F8FAFC; --text: #0F172A; }
.topbar { background: #0d0f12; color: #cbd5e1; font-size: 13px; }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; padding: 8px 0; }
.tb-left { display: flex; gap: 16px; align-items: center; }
.tb-left i { color: #94a3b8; margin-right: 6px; }
.tb-right { display: flex; gap: 10px; }
.tb-right a { color: #cbd5e1; text-decoration: none; display: inline-flex; width: 28px; height: 28px; align-items: center; justify-content: center; border-radius: 50%; border: 1px solid #334155; }
.tb-right a:hover { background: #111827; color: #fff; }
.site-header { box-shadow: 0 8px 22px rgba(0,0,0,0.08); }
.site-header .brand { font-weight: 900; display: inline-flex; align-items: center; gap: 8px; }
.brand-mark { display: inline-flex; width: 28px; height: 28px; border-radius: 50%; align-items: center; justify-content: center; background: var(--primary); color: #fff; }
.nav-burger { background: #fff; }
.site-nav a { font-weight: 600; }
.btn-secondary { border: 2px solid var(--primary); }
.hero { background-image: url('https://images.unsplash.com/photo-1526778548025-fa2f459cd5c1?q=80&w=1600&auto=format&fit=crop'); }
.hero::before { background: linear-gradient(135deg, rgba(11,79,73,0.75), rgba(15,118,110,0.65)); }
.hero-small { background: linear-gradient(135deg, rgba(11,79,73,0.95), rgba(15,118,110,0.95)); }
.searchbar { grid-template-columns: 2fr 1fr 1fr auto; background: rgba(255,255,255,0.9); padding: 12px; border-radius: 12px; box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.searchbar input, .searchbar select { background: #fff; }
.pill { display: inline-flex; align-items: center; gap: 8px; background: #fff; color: #0f172a; border: 1px solid #e5e7eb; }
.pill:hover { background: #f8fafc; box-shadow: 0 6px 14px rgba(0,0,0,0.06); }
.pill i { color: var(--primary); }
.site-footer { border-top: 4px solid var(--primary); }
.footer-social { display: flex; gap: 10px; }
.footer-social a { color: #cbd5e1; text-decoration: none; display: inline-flex; width: 32px; height: 32px; align-items: center; justify-content: center; border-radius: 50%; border: 1px solid #334155; }
.footer-social a:hover { background: #111827; color: #fff; }
.blog-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 20px; }
@media (max-width: 900px) { .blog-layout { grid-template-columns: 1fr; } }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
.blog-card { background: #fff; border: 1px solid #e5e7eb; border-radius: 16px; overflow: hidden; box-shadow: 0 4px 14px rgba(0,0,0,0.06); transition: transform .2s ease, box-shadow .2s ease; }
.blog-card .image { display: block; width: 100%; height: 160px; background-size: cover; background-position: center; }
.blog-card .content { padding: 12px; }
.blog-card .meta { display: flex; gap: 12px; color: #6b7280; font-size: 13px; }
.blog-card h3 { margin: 8px 0; font-size: 20px; }
.blog-card .actions { margin-top: 8px; }
.blog-card:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(0,0,0,0.1); }
.blog-sidebar .card { border-radius: 16px; }
.post-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 20px; }
@media (max-width: 900px) { .post-layout { grid-template-columns: 1fr; } }
.post-body { background: #fff; border: 1px solid #e5e7eb; border-radius: 16px; padding: 16px; box-shadow: 0 4px 14px rgba(0,0,0,0.06); }
.post-meta { display: flex; align-items: center; justify-content: space-between; }
.post-meta .badge { display: inline-block; background: rgba(15,118,110,0.1); color: var(--primary); border: 1px solid rgba(15,118,110,0.25); padding: 4px 8px; border-radius: 9999px; font-size: 12px; }
.share-bar { display: inline-flex; align-items: center; gap: 8px; color: #6b7280; }
.share-bar a { color: #334155; width: 32px; height: 32px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid #e5e7eb; border-radius: 50%; }
.share-bar a:hover { background: #f8fafc; }
.post-content { margin-top: 12px; line-height: 1.7; color: #334155; }
.post-actions { margin-top: 16px; }
.post-sidebar .card { background: #fff; border: 1px solid #e5e7eb; box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
.tour-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.tour-card { position: relative; border-radius: 16px; overflow: hidden; background: #fff; box-shadow: 0 8px 24px rgba(0,0,0,0.06); border: 1px solid #e5e7eb; }
.tour-card .image { width: 100%; height: 180px; background-size: cover; background-position: center; }
.tour-card .content { padding: 14px; }
.tour-card .badge { display: inline-block; background: rgba(15,118,110,0.1); color: var(--primary); border: 1px solid rgba(15,118,110,0.25); padding: 4px 8px; border-radius: 9999px; font-size: 12px; }
.tour-card h3 { margin: 8px 0; font-size: 18px; }
.tour-meta { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; color: #6b7280; font-size: 13px; }
.tour-meta .price { margin-left: auto; color: var(--primary); font-weight: 800; }
.tour-actions { display: flex; gap: 10px; margin-top: 10px; }
.tour-card:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(0,0,0,0.12); }