@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --primary: #1a8ccc;
  --primary-dark: #1a3a5c;
  --secondary: #2d9e6e;
  --accent: #e5952b;
  --bg: #f5f6f8;
  --card: #ffffff;
  --text: #1a1f2e;
  --text-muted: #6b7280;
  --border: #e2e6ed;
  --footer-bg: #1a1f2e;
  --footer-text: #b0b8c8;
  --radius: 12px;
  --shadow: 0 4px 24px -4px rgba(26,31,46,0.08);
  --shadow-hover: 0 8px 32px -4px rgba(26,140,204,0.15);
}

* { margin:0; padding:0; box-sizing:border-box; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

h1,h2,h3,h4,h5,h6 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1rem; }
.container-sm { max-width: 768px; margin: 0 auto; padding: 0 1rem; }

/* Nav */
.nav { background: rgba(255,255,255,0.95); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 50; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.nav-logo { font-family: 'Rajdhani', sans-serif; font-size: 1.25rem; font-weight: 700; display: flex; align-items: center; gap: 0.5rem; }
.nav-logo span { color: var(--primary); }
.nav-links { display: flex; gap: 1.5rem; }
.nav-links a { font-size: 0.875rem; font-weight: 500; color: var(--text-muted); transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.nav-toggle { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; }
.nav-mobile { display: none; flex-direction: column; gap: 0.5rem; padding: 0.5rem 1rem 1rem; border-top: 1px solid var(--border); }
.nav-mobile.open { display: flex; }

/* Hero */
.hero { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); padding: 5rem 1rem; text-align: center; color: #fff; }
.hero h1 { font-size: 2.5rem; margin-bottom: 1rem; }
.hero p { font-size: 1.125rem; opacity: 0.85; max-width: 600px; margin: 0 auto 2rem; }
.btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.75rem 2rem; border-radius: var(--radius); font-weight: 600; font-size: 0.875rem; border: none; cursor: pointer; transition: all 0.2s; }
.btn-secondary { background: var(--secondary); color: #fff; }
.btn-secondary:hover { background: #248c60; }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { opacity: 0.9; }

/* Stats */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; padding: 3rem 0; border-bottom: 1px solid var(--border); text-align: center; }
.stat-value { font-family: 'Rajdhani', sans-serif; font-size: 2rem; font-weight: 700; }
.stat-label { font-size: 0.875rem; color: var(--text-muted); }
.stat-icon { font-size: 1.5rem; color: var(--primary); margin-bottom: 0.5rem; }

/* Cards */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.card { background: var(--card); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: box-shadow 0.3s, transform 0.3s; }
.card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.card img { width: 100%; height: 200px; object-fit: cover; }
.card-body { padding: 1.25rem; }
.card-meta { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.5rem; }
.tag { display: inline-flex; padding: 0.25rem 0.75rem; border-radius: 9999px; font-size: 0.75rem; font-weight: 500; background: rgba(26,140,204,0.1); color: var(--primary); }
.card-date { font-size: 0.75rem; color: var(--text-muted); }
.card h3 { font-size: 1.125rem; line-height: 1.3; margin-bottom: 0.5rem; }
.card p { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 0.75rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.card-rating { display: flex; align-items: center; gap: 0.25rem; font-size: 0.875rem; font-weight: 600; }
.star { color: var(--accent); }

/* Featured */
.featured { display: flex; background: var(--card); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: box-shadow 0.3s, transform 0.3s; }
.featured:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.featured img { width: 50%; object-fit: cover; }
.featured-body { width: 50%; padding: 2rem; display: flex; flex-direction: column; justify-content: center; }

/* Sections */
.section { padding: 4rem 0; }
.section-muted { background: rgba(210,215,225,0.3); }
.section-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem; }
.section-header h2 { font-size: 1.75rem; }
.section-header a { font-size: 0.875rem; color: var(--primary); font-weight: 600; }

/* Review Detail */
.review-hero-img { width: 100%; height: 300px; object-fit: cover; }
.review-back { display: inline-flex; align-items: center; gap: 0.25rem; font-size: 0.875rem; color: var(--primary); margin-bottom: 1.5rem; }
.review-meta { display: flex; flex-wrap: wrap; gap: 1rem; font-size: 0.875rem; color: var(--text-muted); margin-bottom: 2rem; }
.review-content p { margin-bottom: 1rem; color: var(--text-muted); }
.review-content h3 { font-size: 1.25rem; margin: 2rem 0 0.75rem; color: var(--text); }
.rating-box { margin-top: 2.5rem; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; text-align: center; }
.rating-box .score { font-family: 'Rajdhani', sans-serif; font-size: 3rem; font-weight: 700; }

/* Info cards */
.info-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; margin-bottom: 1.5rem; }
.info-card h2 { font-size: 1.25rem; margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.5rem; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 2rem; }
.form-group { margin-bottom: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
input, textarea { width: 100%; padding: 0.75rem; border: 1px solid var(--border); border-radius: calc(var(--radius) - 4px); font-family: 'Inter', sans-serif; font-size: 0.875rem; }
input:focus, textarea:focus { outline: none; border-color: var(--primary); }
textarea { resize: vertical; }
.contact-info-item { display: flex; gap: 0.75rem; margin-bottom: 1.5rem; }
.contact-info-item h3 { font-size: 0.875rem; margin-bottom: 0.25rem; }
.contact-info-item p { font-size: 0.875rem; color: var(--text-muted); white-space: pre-line; }

/* Legal prose */
.prose h2 { font-size: 1.25rem; margin: 2rem 0 0.75rem; color: var(--text); }
.prose p { margin-bottom: 1rem; color: var(--text-muted); }
.prose ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; color: var(--text-muted); }
.prose li { margin-bottom: 0.25rem; }

/* Footer */
.footer { background: var(--footer-bg); color: var(--footer-text); padding: 3rem 0; }
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.footer h4 { font-family: 'Rajdhani', sans-serif; font-size: 0.875rem; font-weight: 600; color: #fff; margin-bottom: 0.75rem; }
.footer-logo { font-family: 'Rajdhani', sans-serif; font-size: 1.125rem; font-weight: 700; color: #fff; margin-bottom: 0.75rem; }
.footer p, .footer li { font-size: 0.875rem; opacity: 0.7; }
.footer ul { list-style: none; }
.footer li { margin-bottom: 0.5rem; }
.footer a:hover { opacity: 1; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 2rem; padding-top: 1.5rem; text-align: center; font-size: 0.75rem; opacity: 0.5; }

/* Responsive */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .hero h1 { font-size: 1.75rem; }
  .stats { grid-template-columns: 1fr; gap: 1rem; }
  .card-grid { grid-template-columns: 1fr; }
  .featured { flex-direction: column; }
  .featured img { width: 100%; height: 200px; }
  .featured-body { width: 100%; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .review-hero-img { height: 200px; }
}
