*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --ocean: #0e7490; --ocean-dark: #0a5a70; --sand: #d97706;
  --sand-light: #fef3c7; --dark: #111827; --mid: #374151;
  --muted: #6b7280; --light: #f9fafb; --white: #ffffff;
  --border: #e5e7eb; --radius: 8px;
}
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; color: var(--dark); background: var(--white); line-height: 1.6; }
a { color: var(--ocean); text-decoration: none; }
a:hover { color: var(--ocean-dark); text-decoration: underline; }
nav { background: var(--dark); padding: 0 20px; position: sticky; top: 0; z-index: 100; }
.nav-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; height: 56px; }
.nav-logo { color: #fff; font-weight: 700; font-size: 1.2rem; }
.nav-logo span { color: var(--sand); }
.nav-links { display: flex; gap: 4px; }
.nav-links a { color: #d1d5db; font-size: 0.875rem; padding: 6px 10px; border-radius: 6px; }
.nav-links a:hover { color: #fff; background: rgba(255,255,255,0.1); text-decoration: none; }
.nav-menu-btn { display: none; background: none; border: none; color: #fff; font-size: 1.4rem; cursor: pointer; }
.hero { background: linear-gradient(135deg, #111827 0%, #1e3a5f 100%); color: #fff; padding: 60px 20px; text-align: center; }
.hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; margin-bottom: 12px; }
.hero p { font-size: 1.1rem; color: #93c5fd; max-width: 560px; margin: 0 auto 28px; }
.hero-search { display: flex; max-width: 500px; margin: 0 auto; gap: 8px; }
.hero-search input { flex: 1; padding: 12px 16px; border-radius: var(--radius); border: none; font-size: 1rem; }
.hero-search button { padding: 12px 20px; background: var(--sand); color: #fff; border: none; border-radius: var(--radius); font-weight: 600; cursor: pointer; }
.page-hero { background: linear-gradient(135deg, #111827 0%, #1e3a5f 100%); color: #fff; padding: 40px 20px; }
.page-hero-inner { max-width: 1100px; margin: 0 auto; }
.breadcrumb { font-size: 0.8rem; color: #93c5fd; margin-bottom: 8px; }
.breadcrumb a { color: #93c5fd; }
.page-hero h1 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: 8px; }
.page-hero p { color: #d1d5db; font-size: 1rem; max-width: 600px; }
.updated-tag { display: inline-block; margin-top: 10px; font-size: 0.75rem; background: rgba(255,255,255,0.1); padding: 3px 10px; border-radius: 20px; color: #93c5fd; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.section { padding: 48px 0; }
h2.section-title { font-size: 1.4rem; font-weight: 700; margin-bottom: 20px; }
h2.section-title span { color: var(--ocean); }
.cat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(155px, 1fr)); gap: 12px; }
.cat-card { background: var(--light); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px 16px; text-align: center; transition: all 0.15s; display: block; }
.cat-card:hover { border-color: var(--ocean); box-shadow: 0 4px 12px rgba(14,116,144,0.15); text-decoration: none; transform: translateY(-2px); }
.cat-card .icon { font-size: 2rem; margin-bottom: 8px; display: block; }
.cat-card .label { font-size: 0.9rem; font-weight: 600; color: var(--dark); }
.cat-card .count { font-size: 0.75rem; color: var(--muted); }
.listings-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 16px; }
.card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; box-shadow: 0 1px 3px rgba(0,0,0,0.08); transition: box-shadow 0.15s; }
.card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.12); }
.card-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 8px; }
.card-name { font-size: 1rem; font-weight: 700; }
.card-price { font-size: 0.8rem; color: var(--muted); background: var(--light); padding: 2px 8px; border-radius: 20px; }
.card-type { font-size: 0.75rem; color: var(--ocean); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px; }
.card-desc { font-size: 0.875rem; color: var(--mid); margin-bottom: 12px; line-height: 1.5; }
.card-meta { font-size: 0.8rem; color: var(--muted); display: flex; flex-direction: column; gap: 3px; }
.card-actions { margin-top: 14px; display: flex; gap: 8px; }
.btn { display: inline-block; padding: 7px 14px; border-radius: 6px; font-size: 0.8rem; font-weight: 600; border: none; transition: all 0.15s; cursor: pointer; }
.btn-primary { background: var(--ocean); color: #fff; }
.btn-primary:hover { background: var(--ocean-dark); color: #fff; text-decoration: none; }
.btn-outline { background: transparent; color: var(--ocean); border: 1px solid var(--ocean); }
.btn-outline:hover { background: var(--ocean); color: #fff; text-decoration: none; }
.filter-bar { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.filter-btn { padding: 6px 14px; border-radius: 20px; border: 1px solid var(--border); background: #fff; font-size: 0.8rem; cursor: pointer; color: var(--mid); }
.filter-btn.active, .filter-btn:hover { background: var(--ocean); color: #fff; border-color: var(--ocean); }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.blog-card { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; display: block; transition: box-shadow 0.15s; }
.blog-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.1); text-decoration: none; }
.blog-card-body { padding: 16px; }
.blog-card-tag { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; color: var(--ocean); margin-bottom: 6px; }
.blog-card-title { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 6px; line-height: 1.4; }
.blog-card-excerpt { font-size: 0.85rem; color: var(--muted); line-height: 1.5; }
.article-wrap { display: grid; grid-template-columns: 1fr 280px; gap: 40px; align-items: start; }
.article-body h2 { font-size: 1.3rem; font-weight: 700; margin: 32px 0 12px; }
.article-body h3 { font-size: 1.05rem; font-weight: 700; margin: 24px 0 8px; color: var(--mid); }
.article-body p { margin-bottom: 16px; color: var(--mid); line-height: 1.75; }
.article-body ul { margin: 0 0 16px 20px; list-style: disc; }
.article-body ul li { margin-bottom: 6px; color: var(--mid); }
.info-box { background: var(--sand-light); border-left: 4px solid var(--sand); padding: 16px 20px; border-radius: 0 var(--radius) var(--radius) 0; margin: 20px 0; }
.warning-box { background: #fef2f2; border-left: 4px solid #ef4444; padding: 16px 20px; border-radius: 0 var(--radius) var(--radius) 0; margin: 20px 0; }
.warning-box strong { color: #dc2626; display: block; margin-bottom: 4px; }
.sidebar-card { background: var(--light); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; margin-bottom: 16px; position: sticky; top: 72px; }
.sidebar-card h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 12px; }
.sidebar-card a { display: block; font-size: 0.85rem; margin-bottom: 6px; color: var(--ocean); }
.table-wrap { overflow-x: auto; margin: 20px 0; }
table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
th { background: var(--dark); color: #fff; padding: 10px 14px; text-align: left; font-weight: 600; }
td { padding: 10px 14px; border-bottom: 1px solid var(--border); color: var(--mid); }
tr:hover td { background: var(--light); }
.stats-bar { background: var(--light); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; display: flex; gap: 32px; flex-wrap: wrap; margin-bottom: 32px; }
.stat-num { font-size: 1.8rem; font-weight: 800; color: var(--ocean); line-height: 1; }
.stat-label { font-size: 0.75rem; color: var(--muted); margin-top: 2px; }
/* ── Hero Full ── */
.hero-full { position: relative; height: 100vh; min-height: 560px; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; }
.hero-full-bg { position: absolute; inset: 0; background-image: url('https://images.unsplash.com/photo-1583212292454-1fe6229603b7?auto=format&fit=crop&w=1920&q=85'); background-size: cover; background-position: center 40%; }
.hero-full-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.55) 60%, rgba(0,0,0,0.75) 100%); }
.hero-full-content { position: relative; z-index: 2; color: #fff; padding: 0 20px; max-width: 700px; }
.hero-full-content h1 { font-size: clamp(2.2rem, 6vw, 4rem); font-weight: 900; line-height: 1.1; margin-bottom: 16px; text-shadow: 0 2px 20px rgba(0,0,0,0.5); }
.hero-full-content h1 span { color: #38bdf8; }
.hero-full-content p { font-size: clamp(1rem, 2.5vw, 1.25rem); color: rgba(255,255,255,0.88); margin-bottom: 28px; }
.hero-search-full { display: flex; max-width: 480px; margin: 0 auto 24px; background: #fff; border-radius: 50px; overflow: hidden; box-shadow: 0 8px 32px rgba(0,0,0,0.3); }
.hero-search-full input { flex: 1; padding: 14px 20px; border: none; font-size: 0.95rem; outline: none; color: var(--dark); background: transparent; }
.hero-search-full button { padding: 14px 24px; background: var(--ocean); color: #fff; border: none; font-weight: 700; font-size: 0.9rem; cursor: pointer; white-space: nowrap; }
.hero-search-full button:hover { background: var(--ocean-dark); }
.hero-badges { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.hero-badge { background: rgba(255,255,255,0.15); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.25); color: #fff; padding: 6px 14px; border-radius: 20px; font-size: 0.8rem; font-weight: 600; }
.scroll-hint { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.6); font-size: 0.75rem; display: flex; flex-direction: column; align-items: center; gap: 4px; z-index: 2; }
.scroll-hint::after { content: '↓'; font-size: 1.2rem; animation: bounce 1.5s infinite; }
@keyframes bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(6px)} }

/* ── Photo Cards ── */
.photo-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
.photo-card { position: relative; border-radius: 12px; overflow: hidden; height: 220px; display: block; cursor: pointer; }
.photo-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.photo-card:hover img { transform: scale(1.07); }
.photo-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.1) 60%); }
.photo-card-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 16px; color: #fff; }
.photo-card-tag { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: #38bdf8; margin-bottom: 4px; }
.photo-card-title { font-size: 1rem; font-weight: 700; line-height: 1.3; }
.photo-card-sub { font-size: 0.8rem; color: rgba(255,255,255,0.75); margin-top: 2px; }
.photo-card-large { grid-column: span 2; height: 280px; }

/* ── Activity Cards ── */
.activity-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 12px; }
.activity-card { position: relative; border-radius: 12px; overflow: hidden; height: 180px; display: block; }
.activity-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.activity-card:hover img { transform: scale(1.08); }
.activity-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 55%); }
.activity-card:hover .activity-card-overlay { background: linear-gradient(to top, rgba(14,116,144,0.85) 0%, rgba(14,116,144,0.2) 60%); }
.activity-card-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 14px; color: #fff; }
.activity-card-icon { font-size: 1.5rem; margin-bottom: 4px; display: block; }
.activity-card-name { font-size: 0.95rem; font-weight: 700; }
.activity-card-cta { font-size: 0.75rem; color: rgba(255,255,255,0.7); }

/* ── Section Divider ── */
.section-label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--ocean); margin-bottom: 8px; }
.section-heading { font-size: clamp(1.4rem,3vw,1.9rem); font-weight: 800; margin-bottom: 6px; color: var(--dark); }
.section-sub { color: var(--muted); font-size: 0.9rem; margin-bottom: 28px; }

/* ── Highlight Strip ── */
.highlight-strip { background: linear-gradient(135deg, #0e7490 0%, #0a5a70 100%); color: #fff; padding: 48px 20px; text-align: center; }
.highlight-strip h2 { font-size: clamp(1.5rem,3vw,2.2rem); font-weight: 800; margin-bottom: 8px; }
.highlight-strip p { color: rgba(255,255,255,0.8); max-width: 520px; margin: 0 auto 24px; }
.highlight-stats { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; margin-top: 32px; }
.highlight-stat-num { font-size: 2.4rem; font-weight: 900; line-height: 1; }
.highlight-stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.7); margin-top: 4px; }

/* ── Testimonial / Quote ── */
.quote-section { background: var(--sand-light); padding: 48px 20px; text-align: center; }
.quote-text { font-size: clamp(1.1rem,2.5vw,1.4rem); font-style: italic; color: var(--mid); max-width: 640px; margin: 0 auto 12px; line-height: 1.7; }
.quote-author { font-size: 0.85rem; font-weight: 700; color: var(--sand); }

/* ── Featured Listings V2 ── */
.listing-card-v2 { background: #fff; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; transition: box-shadow 0.15s, transform 0.15s; }
.listing-card-v2:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.12); transform: translateY(-3px); }
.listing-card-v2-img { height: 180px; overflow: hidden; }
.listing-card-v2-img img { width: 100%; height: 100%; object-fit: cover; }
.listing-card-v2-body { padding: 16px; }
.listing-card-v2-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 6px; }
.listing-card-v2-name { font-size: 1rem; font-weight: 700; }
.listing-card-v2-price { font-size: 0.8rem; background: var(--light); color: var(--muted); padding: 2px 8px; border-radius: 20px; }
.listing-card-v2-type { font-size: 0.72rem; color: var(--ocean); font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px; }
.listing-card-v2-desc { font-size: 0.85rem; color: var(--mid); line-height: 1.55; margin-bottom: 12px; }
.listing-card-v2-meta { font-size: 0.8rem; color: var(--muted); }

footer { background: var(--dark); color: #9ca3af; padding: 40px 20px 20px; margin-top: 60px; }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 32px; margin-bottom: 32px; }
.footer-col h4 { color: #fff; font-size: 0.9rem; font-weight: 700; margin-bottom: 12px; }
.footer-col a { display: block; color: #9ca3af; font-size: 0.85rem; margin-bottom: 6px; }
.footer-col a:hover { color: #fff; text-decoration: none; }
.footer-bottom { border-top: 1px solid #374151; padding-top: 20px; font-size: 0.8rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
@media (max-width: 900px) { .article-wrap { grid-template-columns: 1fr; } }
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 56px; left: 0; right: 0; background: #111827; padding: 12px; }
  .nav-menu-btn { display: block; }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .listings-grid { grid-template-columns: 1fr; }
  .hero-search { flex-direction: column; }
}
@media (max-width: 480px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }

@media (max-width: 768px) { .photo-card-large { grid-column: span 1; height: 220px; } .activity-grid { grid-template-columns: repeat(2, 1fr); } .highlight-stats { gap: 24px; } .hero-full-content h1 { font-size: 2rem; } }
