﻿:root {
  --sun: #F5A623; --sun-light: #FFD580; --coral: #F07B5A;
  --sky: #5BB8F5; --sand: #FDF6EC; --deep: #1A1005;
  --text: #3D2B0F; --muted: #9C856A; --white: #FFFFFF;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html { overflow-x: hidden; }
body { font-family: 'DM Sans', sans-serif; background: var(--sand); color: var(--text); overflow-x: hidden; }


/* NAV */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 200; background: rgba(253,246,236,0.96); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(245,166,35,0.2); display: flex; align-items: center; justify-content: space-between; padding: 0 48px; height: 64px; }
main { padding-top: 64px; }
.nav-logo { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: var(--deep); text-decoration: none; }
.nav-logo span { color: #9f6300; }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a { font-size: 13px; font-weight: 500; color: var(--text); text-decoration: none; letter-spacing: 0.04em; text-transform: uppercase; transition: color 0.2s; }
.nav-links a:hover { color: var(--coral); }
.nav-cta { background: var(--sun); color: var(--deep) !important; padding: 8px 20px; border-radius: 100px; }
.nav-cta:hover { background: var(--coral); color: var(--white) !important; }
/* Prevent article link color from bleeding into buttons */
.article-body .btn-primary, .article-body .btn-secondary { color: var(--white) !important; text-decoration: none !important; }

/* SHARED */
section { padding: 96px 48px; }
.inner { max-width: 1100px; margin: 0 auto; }
.section-tag { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #B8471F; margin-bottom: 12px; display: block; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(28px,3.5vw,44px); line-height: 1.15; letter-spacing: -0.02em; color: var(--deep); margin-bottom: 16px; }
.section-sub { font-size: 16px; line-height: 1.7; color: #5C4433; max-width: 520px; }
.center-header { text-align: center; margin-bottom: 56px; }
.center-header .section-sub { margin: 0 auto; }
.btn-primary { display: inline-flex; align-items: center; gap: 10px; background: linear-gradient(135deg,var(--sun),var(--coral)); color: var(--white); padding: 16px 32px; border-radius: 100px; font-size: 15px; font-weight: 500; text-decoration: none; box-shadow: 0 8px 30px rgba(240,123,90,0.35); transition: transform 0.2s, box-shadow 0.2s; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(240,123,90,0.45); }
.btn-secondary { display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.85); padding: 16px 24px; border-radius: 100px; font-size: 15px; font-weight: 500; text-decoration: none; border: 1.5px solid rgba(255,255,255,0.3); transition: border-color 0.2s, background 0.2s; }
.btn-secondary:hover { border-color: var(--sun); background: rgba(255,255,255,0.1); }
@keyframes fadeUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }
@keyframes float1 { 0%,100%{transform:translateY(0) scale(1)} 50%{transform:translateY(-30px) scale(1.05)} }
@keyframes float2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(20px)} }

/* ① HERO */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 48px;
  background-image: linear-gradient(rgba(26,16,5,0.5), rgba(26,16,5,0.35)), url('images/couple-relaxing-beach-sunset.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-bg { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.hbc1 { position: absolute; width: 700px; height: 700px; border-radius: 50%; background: radial-gradient(circle,#FFD58055,transparent 70%); top: -200px; right: -100px; animation: float1 8s ease-in-out infinite; }
.hbc2 { position: absolute; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle,#F07B5A22,transparent 70%); bottom: 0; left: 10%; animation: float2 10s ease-in-out infinite; }
.hbc3 { position: absolute; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle,#5BB8F522,transparent 70%); top: 30%; left: 40%; animation: float1 12s ease-in-out infinite reverse; }
.hero-content { position: relative; z-index: 2; max-width: 620px; }
.hero-tag { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.12); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.25); border-radius: 100px; padding: 6px 16px; font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.85); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 28px; animation: fadeUp 0.6s ease both; }
.hero-tag::before { content:''; width:6px; height:6px; border-radius:50%; background:var(--sun); }
.hero-title { font-family: 'Playfair Display', serif; font-size: clamp(42px,6vw,76px); line-height: 1.08; letter-spacing: -0.03em; color: var(--white); margin-bottom: 24px; animation: fadeUp 0.6s ease 0.1s both; }
.hero-title em { font-style: italic; color: var(--sun-light); }
.hero-text { font-size: 18px; line-height: 1.6; color: rgba(255,255,255,0.9); margin-bottom: 32px; animation: fadeUp 0.6s ease 0.2s both; }
.hero-ctas { display: flex; gap: 16px; animation: fadeUp 0.6s ease 0.3s both; flex-wrap: wrap; }
@media (max-width:768px) {
  .hero-ctas { flex-direction: column; }
  .hero { padding: 40px 24px; }
  nav { padding: 0 24px; }
  section { padding: 48px 24px; }
}

/* STATS */
.stats { background: linear-gradient(135deg, rgba(245,166,35,0.08), rgba(240,123,90,0.08)); padding: 64px 48px; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 48px; max-width: 1100px; margin: 0 auto; text-align: center; }
.stat-item h3 { font-family: 'Playfair Display', serif; font-size: 42px; color: var(--sun); margin-bottom: 8px; }
.stat-item p { color: var(--muted); font-size: 14px; text-transform: uppercase; letter-spacing: 0.08em; }

/* BLOG SECTION */
.blog-section { background: var(--sand); }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 32px; max-width: 1100px; margin: 0 auto; }
.blog-card { background: var(--white); border-radius: 12px; overflow: hidden; border: 1px solid rgba(240,123,90,0.1); transition: transform 0.3s, box-shadow 0.3s; }
.blog-card:hover { transform: translateY(-8px); box-shadow: 0 16px 32px rgba(240,123,90,0.15); }
.blog-card-image { height: 200px; background: linear-gradient(135deg, var(--sun-light), var(--coral)); display: flex; align-items: center; justify-content: center; font-size: 56px; }
.blog-card-content { padding: 24px; }
.blog-date { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; }
.blog-card h3 { font-family: 'Playfair Display', serif; font-size: 20px; color: var(--deep); margin-bottom: 12px; line-height: 1.3; }
.blog-excerpt { font-size: 14px; color: var(--text); line-height: 1.6; }

/* FAQ SECTION */
.faq-section { background: var(--white); }
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(245,166,35,0.2); padding: 24px 0; }
.faq-q { width: 100%; text-align: left; background: none; border: none; padding: 0; font-size: 16px; font-weight: 500; color: var(--deep); cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: color 0.2s; }
.faq-q:hover { color: var(--coral); }
.faq-icon { font-size: 20px; transition: transform 0.3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { overflow: hidden; max-height: 0; transition: max-height 0.3s ease; }
.faq-item.open .faq-a { max-height: 500px; }
.faq-a-inner { padding: 16px 0; font-size: 15px; color: var(--text); line-height: 1.7; }

/* CTA BANNER */
.cta-banner { position: relative; padding: 96px 48px; background: linear-gradient(135deg, var(--deep), #3D2B0F); color: var(--white); text-align: center; overflow: hidden; }
.cta-d1 { position: absolute; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, var(--sun-light), transparent 70%); top: -200px; right: -100px; opacity: 0.1; }
.cta-d2 { position: absolute; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, var(--coral), transparent 70%); bottom: -100px; left: 5%; opacity: 0.1; }
.cta-inner { position: relative; z-index: 2; max-width: 600px; margin: 0 auto; }
.cta-banner .section-tag { color: var(--sun); }
.cta-banner .section-title { color: var(--white); }
.cta-banner .section-sub { color: rgba(255,255,255,0.85); }
.cta-note { margin-top: 16px; font-size: 13px; color: rgba(255,255,255,0.7); }

/* RANKING LIST */
.ranking-section { background: var(--white); }
.ranking-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.ranking-item { display: flex; align-items: center; gap: 20px; padding: 20px 24px; background: var(--sand); border-radius: 12px; transition: transform 0.2s; }
.ranking-item:hover { transform: translateX(8px); }
.ranking-num { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700; color: var(--sun); min-width: 44px; }
.ranking-body h4 { font-size: 17px; font-weight: 500; color: var(--deep); margin-bottom: 4px; }
.ranking-body p { font-size: 14px; color: var(--muted); }
.ranking-score { margin-left: auto; text-align: right; white-space: nowrap; }
.ranking-score strong { display: block; font-size: 18px; color: var(--coral); }
.ranking-score span { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }

/* TIPS GRID */
.tips-section { background: var(--sand); }
.tips-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; max-width: 1100px; margin: 0 auto; }
.tip-card { background: var(--white); padding: 28px; border-radius: 12px; border: 1px solid rgba(240,123,90,0.1); }
.tip-num { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 50%; background: linear-gradient(135deg,var(--sun),var(--coral)); color: var(--white); font-weight: 500; font-size: 14px; margin-bottom: 14px; }
.tip-card h4 { font-size: 16px; font-weight: 500; color: var(--deep); margin-bottom: 8px; }
.tip-card p { font-size: 14px; color: var(--text); line-height: 1.65; }

/* COMPARISON TABLE */
.compare-section { background: var(--white); }
.compare-table { width: 100%; max-width: 1100px; margin: 0 auto; border-collapse: collapse; font-size: 14px; }
.compare-table th, .compare-table td { padding: 16px; text-align: left; border-bottom: 1px solid rgba(245,166,35,0.15); }
.compare-table th { font-weight: 500; color: var(--deep); background: var(--sand); font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; }
.compare-table td { color: var(--text); }
.compare-table tr:hover td { background: rgba(245,166,35,0.04); }
.badge-yes { color: #2A9D5C; font-weight: 500; }
.badge-no { color: var(--muted); }
.compare-table-wrap { overflow-x: auto; }

/* TESTIMONIALS */
.testimonial-section { background: linear-gradient(135deg, rgba(245,166,35,0.06), rgba(91,184,245,0.06)); }
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; max-width: 1100px; margin: 0 auto; }
.testimonial-card { background: var(--white); padding: 28px; border-radius: 12px; position: relative; }
.testimonial-stars { color: var(--sun); font-size: 14px; margin-bottom: 12px; }
.testimonial-text { font-size: 14px; color: var(--text); line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg,var(--sun-light),var(--coral)); display: flex; align-items: center; justify-content: center; color: var(--white); font-weight: 500; font-size: 14px; }
.testimonial-author-name { font-size: 14px; font-weight: 500; color: var(--deep); }
.testimonial-author-loc { font-size: 12px; color: var(--muted); }

/* HOW IT WORKS */
.steps-section { background: var(--sand); }
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px; max-width: 1100px; margin: 0 auto; }
.step-card { text-align: center; }
.step-circle { width: 64px; height: 64px; border-radius: 50%; background: var(--white); border: 2px solid var(--sun); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-family: 'Playfair Display', serif; font-size: 22px; color: var(--coral); }
.step-card h4 { font-size: 16px; font-weight: 500; color: var(--deep); margin-bottom: 8px; }
.step-card p { font-size: 14px; color: var(--text); line-height: 1.6; }

/* RED FLAGS / SAFETY */
.safety-section { background: var(--white); }
.safety-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; max-width: 1000px; margin: 0 auto; }
.safety-col h4 { font-size: 16px; font-weight: 500; color: var(--deep); margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.safety-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.safety-list li { font-size: 14px; color: var(--text); line-height: 1.6; padding-left: 24px; position: relative; }
.safety-list.good li::before { content: '✓'; position: absolute; left: 0; color: #2A9D5C; font-weight: 700; }
.safety-list.bad li::before { content: '✕'; position: absolute; left: 0; color: var(--coral); font-weight: 700; }

/* FOOTER */
footer { background: var(--deep); color: rgba(255,255,255,0.8); padding: 64px 48px 32px; }
.footer-top { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 48px; max-width: 1100px; margin: 0 auto 48px; }
.footer-brand { grid-column: span 1; }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: var(--white); text-decoration: none; display: block; margin-bottom: 12px; }
.footer-logo span { color: var(--sun); }
.footer-brand p { font-size: 14px; line-height: 1.6; margin-bottom: 16px; color: rgba(255,255,255,0.7); }
.footer-social { display: flex; gap: 12px; }
.social-btn { display: inline-flex; width: 36px; height: 36px; align-items: center; justify-content: center; background: rgba(255,255,255,0.1); border-radius: 50%; font-size: 16px; text-decoration: none; transition: background 0.2s; }
.social-btn:hover { background: var(--sun); }
.footer-col-heading { font-weight: 500; color: var(--white); margin-bottom: 16px; font-size: 14px; text-transform: uppercase; letter-spacing: 0.08em; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer-col a:hover { color: var(--sun); }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.1); margin: 32px 0; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; max-width: 1100px; margin: 0 auto; font-size: 13px; color: rgba(255,255,255,0.6); flex-wrap: wrap; gap: 16px; }

/* TWO-COL LAYOUT */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; max-width: 1100px; margin: 0 auto; }

/* FEATURE LIST */
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 28px; }
.feature-list li { display: flex; gap: 16px; align-items: flex-start; }
.fl-icon { flex-shrink: 0; font-size: 18px; line-height: 1.4; }
.feature-list li strong { display: block; font-size: 15px; font-weight: 500; color: var(--deep); margin-bottom: 4px; }
.feature-list li p { font-size: 14px; color: var(--text); line-height: 1.75; margin: 0; }

/* CITY CARDS */
.city-card { padding: 32px; background: var(--sand); border-radius: 12px; }
.city-card h3 { font-family: 'Playfair Display', serif; font-size: 24px; color: var(--deep); margin: 4px 0 12px; }
.city-card p { color: var(--text); line-height: 1.7; font-size: 15px; }
.city-card--sun { border-left: 4px solid var(--sun); }
.city-card--coral { border-left: 4px solid var(--coral); }
.city-card--sky { border-left: 4px solid var(--sky); }
.cities-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 32px; margin-top: 48px; }
.city-stat { font-size: 12px !important; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--muted) !important; line-height: 1.4 !important; }
.city-links { display: flex; gap: 20px; margin-top: 20px; flex-wrap: wrap; }
.city-links a { font-size: 13px; font-weight: 500; color: var(--coral); text-decoration: none; transition: color .15s; }
.city-links a:hover { color: var(--deep); }

/* ── MOBILE NAV HAMBURGER ── */
.nav-mobile-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  z-index: 300;
  margin-left: 8px;
}
.nav-mobile-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--deep);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-mobile-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-mobile-btn.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-mobile-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE DRAWER ── */
#nav-drawer-main {
  position: fixed;
  top: 60px; left: 0; right: 0;
  z-index: 250;
  background: var(--sand);
  display: flex;
  flex-direction: column;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, box-shadow 0.3s ease;
}
#nav-drawer-main.open {
  max-height: 400px;
  border-bottom: 2px solid rgba(245,166,35,0.18);
  box-shadow: 0 8px 24px rgba(26,16,5,0.1);
}
#nav-drawer-main a {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--text);
  text-decoration: none;
  padding: 0 28px;
  height: 52px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(245,166,35,0.1);
  transition: color 0.15s, background 0.15s;
}
#nav-drawer-main a:hover { color: var(--coral); background: rgba(245,166,35,0.05); }
#nav-drawer-main .drawer-cta {
  margin: 10px 20px 14px;
  height: auto;
  padding: 13px 20px;
  justify-content: center;
  background: linear-gradient(135deg, var(--sun), var(--coral));
  color: var(--white) !important;
  border-radius: 6px;
  font-weight: 500;
  font-size: 14px;
  border-bottom: none;
  letter-spacing: 0.02em;
}
#nav-drawer-main .drawer-cta:hover { opacity: 0.9; color: var(--white) !important; }

/* ── RESPONSIVE BREAKPOINTS ── */
@media (max-width: 768px) {
  .nav-links { display: none !important; }
  .nav-mobile-btn { display: flex; }
  nav { height: 60px; }
  main { padding-top: 60px; }
  .stats { padding: 48px 24px; }
}

@media (max-width: 900px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 560px) {
  .stats { padding: 40px 20px; }
  .stats-grid { grid-template-columns: 1fr; gap: 20px; }
  .stat-item h3 { font-size: 36px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .hero-title { font-size: clamp(32px, 9vw, 54px); }
  .hero-text { font-size: 16px; }
  .cta-banner { padding: 64px 24px; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .cities-grid { grid-template-columns: 1fr; }
  .compare-table th, .compare-table td { padding: 10px 8px; font-size: 12px; }
  .ranking-item { flex-wrap: wrap; }
  .ranking-score { width: 100%; text-align: left; margin-left: 64px; margin-top: -4px; }
  .two-col, .benefits-two-col { grid-template-columns: 1fr !important; }
}
