/* === MamLot — style.css === */
/* Mobile-first, minimal, conversion-optimized */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue: #2563EB;
  --blue-dark: #1E40AF;
  --blue-light: #DBEAFE;
  --yellow: #F59E0B;
  --yellow-hover: #D97706;
  --green: #059669;
  --green-light: #D1FAE5;
  --red: #DC2626;
  --red-light: #FEE2E2;
  --bg: #F8FAFC;
  --white: #FFFFFF;
  --text: #0F172A;
  --text-secondary: #475569;
  --text-muted: #94A3B8;
  --border: #E2E8F0;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.06), 0 2px 4px rgba(0,0,0,0.04);
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

h2 {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
  line-height: 1.3;
  color: var(--text);
}

h3 { font-size: 1.05rem; line-height: 1.3; }

.section-sub {
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: 32px;
  font-size: 0.95rem;
}

.accent { color: var(--yellow); }

/* === BUTTONS === */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s, box-shadow 0.15s;
  text-align: center;
}

.btn:active { transform: scale(0.98); }

.btn-primary {
  background: var(--yellow);
  color: var(--text);
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.btn-primary:hover { background: var(--yellow-hover); }

.btn-lg { padding: 16px 36px; font-size: 1.05rem; }

.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.9);
  border: 2px solid rgba(255,255,255,0.25);
}

.btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.4); }

.btn-full { width: 100%; }

/* === NAV === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(30, 64, 175, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 960px;
}

.logo {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.5px;
}

.nav-links {
  display: none;
  list-style: none;
  gap: 24px;
}

.nav-links a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.15s;
}

.nav-links a:hover { color: #fff; }

.nav-cta {
  padding: 7px 18px;
  background: var(--yellow);
  color: var(--text);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  transition: background 0.15s;
}

.nav-cta:hover { background: var(--yellow-hover); }

/* === HERO === */
.hero {
  background: linear-gradient(150deg, #1E3A8A 0%, #2563EB 50%, #3B82F6 100%);
  color: #fff;
  text-align: center;
  padding: 100px 20px 64px;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.92);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: 20px;
  letter-spacing: 0.2px;
}

.hero h1 {
  font-size: 2rem;
  letter-spacing: -0.8px;
  margin-bottom: 16px;
  line-height: 1.25;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-sub {
  font-size: 1.05rem;
  opacity: 0.9;
  margin-bottom: 28px;
  line-height: 1.6;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-trust {
  margin-top: 14px;
  font-size: 0.82rem;
  opacity: 0.55;
}

/* === PROBLEM === */
.problem {
  padding: 56px 20px;
  background: var(--white);
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 24px;
}

.problem-card {
  background: var(--bg);
  border-radius: var(--radius-sm);
  padding: 20px;
  border-left: 3px solid var(--red);
}

.problem-quote {
  font-style: italic;
  color: var(--text);
  font-size: 0.93rem;
  line-height: 1.5;
}

.problem-bottom {
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.95rem;
  max-width: 500px;
  margin: 0 auto;
}

/* === HOW IT WORKS === */
.how {
  padding: 56px 20px;
  background: var(--bg);
}

.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 8px;
}

.step {
  text-align: center;
  padding: 28px 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.step-num {
  width: 44px;
  height: 44px;
  background: var(--blue);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.step h3 { margin-bottom: 6px; }
.step p { color: var(--text-secondary); font-size: 0.9rem; }

/* === DEAL CARDS === */
.examples {
  padding: 56px 20px;
  background: var(--white);
}

.deal-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.deal-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 20px;
  border-top: 4px solid var(--blue);
  transition: transform 0.15s, box-shadow 0.15s;
}

.deal-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.deal-card.deal-error { border-top-color: var(--red); }
.deal-card.deal-great { border-top-color: var(--green); }
.deal-card.deal-good { border-top-color: var(--blue); }

.deal-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 6px;
}

.deal-error .deal-badge { background: var(--red-light); color: var(--red); }
.deal-great .deal-badge { background: var(--green-light); color: var(--green); }
.deal-good .deal-badge { background: var(--blue-light); color: var(--blue); }

.deal-card h3 { font-size: 1rem; margin-bottom: 2px; }

.deal-price {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1.2;
}

.deal-price span { font-size: 1rem; font-weight: 600; }

.deal-details { color: var(--text-secondary); font-size: 0.83rem; margin-top: 4px; }
.deal-meta { color: var(--text-muted); font-size: 0.75rem; margin-top: 6px; }
.deal-link { display: inline-block; margin-top: 8px; font-size: 0.83rem; font-weight: 600; color: var(--blue); text-decoration: none; }
.deal-link:hover { text-decoration: underline; }
.aff-icon { font-size: 0.7rem; color: var(--text-muted); margin-left: 4px; cursor: help; vertical-align: middle; opacity: 0.7; }
.aff-icon:hover { opacity: 1; }

/* === BENEFITS === */
.benefits {
  padding: 56px 20px;
  background: var(--bg);
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 8px;
}

.benefit {
  padding: 24px 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.benefit h3 {
  margin-bottom: 4px;
  font-size: 1rem;
}

.benefit p { color: var(--text-secondary); font-size: 0.9rem; }

/* === COMPARISON === */
.comparison {
  padding: 56px 20px;
  background: var(--white);
}

.comparison-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 8px;
}

.comparison-table {
  width: 100%;
  min-width: 400px;
  border-collapse: collapse;
  font-size: 0.88rem;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.comparison-table th,
.comparison-table td {
  padding: 12px 14px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.comparison-table th {
  background: var(--bg);
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.comparison-table th.highlight {
  background: var(--blue);
  color: #fff;
}

.comparison-table td:first-child {
  text-align: left;
  font-weight: 500;
}

.comparison-table td.highlight { background: var(--blue-light); }

.comparison-table .check::after { content: '\2713'; color: var(--green); font-weight: 700; font-size: 1.1rem; }
.comparison-table .cross::after { content: '\2717'; color: #CBD5E1; font-weight: 400; font-size: 1.1rem; }

/* === DESTINATIONS — SEO content === */
.destinations {
  padding: 56px 20px;
  background: var(--bg);
}

.dest-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.dest-group {
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

.dest-group h3 {
  font-size: 0.95rem;
  margin-bottom: 4px;
  color: var(--blue-dark);
}

.dest-group p { color: var(--text-secondary); font-size: 0.9rem; }

.dest-airports {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* === SIGNUP FORM === */
.signup {
  padding: 56px 20px;
  background: var(--white);
}

.form {
  max-width: 460px;
  margin: 0 auto;
}

.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 0.92rem;
}

.form-group input[type="email"],
.form-group select {
  width: 100%;
  padding: 11px 12px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  transition: border-color 0.15s;
  background: var(--white);
  color: var(--text);
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  padding: 7px 14px;
  border: 2px solid var(--border);
  border-radius: 20px;
  background: var(--white);
  font-size: 0.88rem;
  cursor: pointer;
  transition: all 0.12s;
  color: var(--text);
  line-height: 1.3;
}

.chip:hover { border-color: var(--blue); color: var(--blue); }

.chip.active {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

.radios { display: flex; flex-wrap: wrap; gap: 10px 16px; }

.radio-label {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.92rem;
  cursor: pointer;
}

.radio-label input[type="radio"] { accent-color: var(--blue); }

.form-message {
  text-align: center;
  padding: 12px;
  border-radius: var(--radius-sm);
  margin-top: 14px;
  font-weight: 500;
  font-size: 0.95rem;
}

.form-message.success { background: var(--green-light); color: var(--green); }
.form-message.error { background: var(--red-light); color: var(--red); }

.form-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.78rem;
  margin-top: 12px;
  line-height: 1.5;
}

/* === FAQ === */
.faq {
  padding: 56px 20px;
  background: var(--bg);
}

.faq-list {
  max-width: 600px;
  margin: 8px auto 0;
}

details {
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}

summary {
  font-weight: 600;
  cursor: pointer;
  font-size: 0.95rem;
  list-style: none;
  position: relative;
  padding-right: 28px;
  line-height: 1.4;
}

summary::-webkit-details-marker { display: none; }

summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2rem;
  color: var(--text-muted);
  font-weight: 400;
  line-height: 1.4;
}

details[open] summary::after { content: '\2212'; }

details p {
  margin-top: 8px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* === FINAL CTA === */
.final-cta {
  padding: 64px 20px;
  background: linear-gradient(150deg, #1E3A8A 0%, #2563EB 100%);
  color: #fff;
  text-align: center;
}

.final-cta h2 {
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 12px;
  line-height: 1.4;
}

.final-cta-sub {
  color: rgba(255,255,255,0.7);
  margin-bottom: 24px;
  font-size: 0.95rem;
}

/* === FOOTER === */
.footer {
  padding: 32px 20px;
  text-align: center;
  line-height: 1.8;
  background: var(--white);
  border-top: 1px solid var(--border);
}

.footer-brand {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.85rem;
}

.footer-links a:hover { color: var(--blue); }

.footer-legal {
  color: var(--text-muted);
  font-size: 0.78rem;
  max-width: 500px;
  margin: 0 auto 4px;
}

.footer-copy {
  color: var(--text-muted);
  font-size: 0.75rem;
}

/* ==============================
   RESPONSIVE — tablet & desktop
   ============================== */

@media (min-width: 640px) {
  h2 { font-size: 1.85rem; }

  .hero { padding: 120px 20px 80px; }
  .hero h1 { font-size: 2.6rem; }
  .hero-sub { font-size: 1.12rem; }

  .problem-grid { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .deal-cards { grid-template-columns: repeat(3, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 860px) {
  .nav-links { display: flex; }
  .benefits-grid { grid-template-columns: repeat(4, 1fr); }

  .final-cta h2 { font-size: 1.65rem; }
}

@media (max-width: 400px) {
  .hero h1 { font-size: 1.65rem; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas .btn { width: 100%; }
  .radios { flex-direction: column; }
}

/* ==============================
   BLOG STYLES
   ============================== */

/* Blog listing page */
.blog-hero {
  background: linear-gradient(150deg, #1E3A8A 0%, #2563EB 50%, #3B82F6 100%);
  color: #fff;
  text-align: center;
  padding: 100px 20px 48px;
}

.blog-hero h1 {
  font-size: 2rem;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.blog-hero p {
  opacity: 0.85;
  font-size: 1.05rem;
}

.blog-list {
  padding: 40px 20px;
  background: var(--bg);
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  transition: transform 0.15s, box-shadow 0.15s;
  text-decoration: none;
  color: inherit;
  display: block;
}

.blog-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.blog-card h2 {
  font-size: 1.2rem;
  text-align: left;
  margin-bottom: 8px;
  color: var(--text);
  line-height: 1.35;
}

.blog-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 12px;
}

.blog-card-meta {
  color: var(--text-muted);
  font-size: 0.78rem;
}

/* Article page */
.article-header {
  background: linear-gradient(150deg, #1E3A8A 0%, #2563EB 50%, #3B82F6 100%);
  color: #fff;
  text-align: center;
  padding: 100px 20px 48px;
}

.article-header h1 {
  font-size: 1.8rem;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
  line-height: 1.3;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.article-meta {
  opacity: 0.7;
  font-size: 0.88rem;
}

.breadcrumb {
  padding: 12px 20px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--text-muted);
}

.breadcrumb a {
  color: var(--blue);
  text-decoration: none;
}

.breadcrumb a:hover { text-decoration: underline; }

.breadcrumb span { margin: 0 6px; }

.article-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 20px 60px;
  background: var(--white);
}

.article-body h2 {
  font-size: 1.4rem;
  text-align: left;
  margin: 36px 0 12px;
  color: var(--text);
  letter-spacing: -0.2px;
}

.article-body h3 {
  font-size: 1.1rem;
  margin: 28px 0 8px;
  color: var(--text);
}

.article-body p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 16px;
}

.article-body ul,
.article-body ol {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.75;
  margin: 0 0 16px 24px;
}

.article-body li { margin-bottom: 6px; }

.article-body strong { color: var(--text); }

.article-body blockquote {
  border-left: 3px solid var(--blue);
  padding: 12px 20px;
  margin: 20px 0;
  background: var(--blue-light);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--text);
  font-size: 0.93rem;
}

.article-body .tip-box {
  background: #FFFBEB;
  border: 1px solid #FDE68A;
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin: 20px 0;
  font-size: 0.9rem;
  color: var(--text);
}

.article-body .tip-box strong {
  color: #92400E;
}

/* Article CTA box */
.article-cta {
  background: linear-gradient(150deg, #1E3A8A 0%, #2563EB 100%);
  color: #fff;
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  margin: 40px 0;
}

.article-cta h3 {
  color: #fff;
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.article-cta p {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 16px;
  opacity: 1;
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.article-cta .btn { margin-top: 4px; }

/* Related articles */
.related-articles {
  padding: 40px 20px;
  background: var(--bg);
}

.related-articles h2 {
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 720px;
  margin: 0 auto;
}

/* City page styles */
.city-hero {
  background: linear-gradient(150deg, #1E3A8A 0%, #2563EB 50%, #3B82F6 100%);
  color: #fff;
  text-align: center;
  padding: 100px 20px 48px;
}

.city-hero h1 {
  font-size: 1.9rem;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
  line-height: 1.3;
}

.city-hero p {
  opacity: 0.85;
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto;
}

.city-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 20px 60px;
}

.city-content h2 {
  text-align: left;
  font-size: 1.3rem;
  margin: 32px 0 12px;
}

.city-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 16px;
}

.city-content ul {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.75;
  margin: 0 0 16px 24px;
}

.city-content a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid var(--blue-light);
  transition: border-color 0.15s, color 0.15s;
}

.city-content a:hover {
  color: var(--blue-dark);
  border-bottom-color: var(--blue);
}

.dest-info-grid {
  margin: 20px 0;
}

.tip-box {
  background: #FFFBEB;
  border: 1px solid #FDE68A;
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.8;
}

.tip-box strong {
  color: #92400E;
}

.city-airports-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 24px 0;
}

.city-airport-card {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 16px;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: inherit;
  text-align: center;
  transition: transform 0.15s;
}

.city-airport-card:hover { transform: translateY(-2px); }

.city-airport-card strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 2px;
}

.city-airport-card span {
  color: var(--text-muted);
  font-size: 0.82rem;
}

@media (min-width: 640px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-hero h1 { font-size: 2.4rem; }
  .article-header h1 { font-size: 2.2rem; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .city-airports-grid { grid-template-columns: repeat(3, 1fr); }
  .city-hero h1 { font-size: 2.3rem; }
}
