:root {
  --bg: #ffffff;
  --bg-alt: #f5f8ff;
  --bg-dark: #0a1628;
  --bg-darker: #050d1a;
  --text: #0f172a;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --primary: #1e3a8a;
  --primary-dark: #172554;
  --accent: #06b6d4;
  --accent-light: #22d3ee;
  --gradient: linear-gradient(135deg, #1e3a8a 0%, #06b6d4 100%);
  --gradient-soft: linear-gradient(135deg, #f5f8ff 0%, #e0f2fe 100%);
  --border: #e2e8f0;
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.06);
  --shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 40px rgba(15, 23, 42, 0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --container: 1200px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}

img:not(.logo-img) { max-width: 100%; height: auto; display: block; }

a { color: var(--primary); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--accent); }

h1, h2, h3, h4 {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: 1rem; }
h3 { font-size: 1.3rem; margin-bottom: .75rem; }

p { margin-bottom: 1rem; color: var(--text-muted); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

section { padding: 5rem 0; position: relative; }

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.section-header .eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--accent);
  margin-bottom: 1rem;
  padding: .35rem .9rem;
  background: rgba(6, 182, 212, .08);
  border-radius: 100px;
}

.section-header p { font-size: 1.1rem; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 1.75rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: .95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .25s ease;
  text-decoration: none;
  font-family: inherit;
}

.btn-primary {
  background: var(--gradient);
  color: white;
  box-shadow: 0 8px 20px rgba(30, 58, 138, .25);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 12px 28px rgba(30, 58, 138, .35);
  color: white;
}

.btn-outline {
  background: transparent;
  color: var(--bg);
  border-color: rgba(255,255,255,.4);
}

.btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: white;
  color: white;
  transform: translateY(-2px);
}

.header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: all .3s ease;
}

.header.scrolled {
  box-shadow: var(--shadow-sm);
}

.navbar {
  max-width: var(--container);
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: var(--text);
  font-weight: 700;
}

.logo-img {
  max-width: 50px;
  height: auto;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.4) 0%, transparent 50%),
    conic-gradient(from 220deg at 50% 50%, #1e3a8a 0deg, #06b6d4 120deg, #1e3a8a 240deg, #06b6d4 360deg);
  box-shadow: 0 4px 12px rgba(30, 58, 138, .35), inset 0 1px 2px rgba(255,255,255,.3);
  position: relative;
  overflow: hidden;
}

.logo-img::before {
  content: "";
  position: absolute;
  pointer-events: none;
  inset: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fff 0%, #e0f2fe 100%);
  box-shadow: 0 2px 4px rgba(0,0,0,.15);
}

.logo-img::after {
  content: "";
  position: absolute;
  pointer-events: none;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e3a8a 0%, #06b6d4 100%);
  box-shadow: 0 0 0 3px rgba(255,255,255,.6);
}

.site-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
}

.nav-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-menu a {
  color: var(--text);
  font-weight: 500;
  font-size: .95rem;
  position: relative;
  padding: .5rem 0;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  pointer-events: none;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gradient);
  transition: width .25s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after { width: 100%; }

.nav-menu a:hover { color: var(--primary); }

.nav-menu .btn { padding: .55rem 1.25rem; font-size: .9rem; }
.nav-menu .btn::after { display: none; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .25s ease;
}

.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 6rem 0 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(10, 22, 40, 0.92) 0%, rgba(30, 58, 138, 0.85) 60%, rgba(6, 182, 212, 0.55) 100%);
  z-index: -1;
}

.hero-overlay::before {
  content: "";
  position: absolute;
  pointer-events: none;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.35), transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(30, 58, 138, 0.4), transparent 50%);
}

.hero-content {
  position: relative;
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
  color: white;
  padding: 0 1.5rem;
}

.hero-content .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  font-size: .85rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.hero-content .hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--accent-light);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--accent-light);
}

.hero-content h1 {
  color: white;
  margin-bottom: 1.5rem;
  font-weight: 800;
}

.hero-content h1 .accent-text {
  background: linear-gradient(135deg, #22d3ee 0%, #67e8f9 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, .88);
  margin-bottom: 2.5rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-trust {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.15);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  font-size: .85rem;
  color: rgba(255,255,255,.7);
}

.hero-trust span { display: flex; align-items: center; gap: .4rem; }

.page-hero {
  position: relative;
  padding: 8rem 0 4rem;
  background: var(--gradient);
  color: white;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  pointer-events: none;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,.15) 0%, transparent 70%);
  border-radius: 50%;
}

.page-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  bottom: -40%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(6,182,212,.3) 0%, transparent 70%);
  border-radius: 50%;
}

.page-hero .container { position: relative; text-align: center; }
.page-hero h1 { color: white; margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,.85); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }
.breadcrumb {
  margin-top: 1.5rem;
  font-size: .9rem;
  color: rgba(255,255,255,.75);
}
.breadcrumb a { color: rgba(255,255,255,.85); }
.breadcrumb a:hover { color: white; }

.services {
  background: var(--bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  pointer-events: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--gradient-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  position: relative;
  font-size: 1.6rem;
}

.service-icon::after {
  content: "";
  position: absolute;
  pointer-events: none;
  inset: 0;
  border-radius: 14px;
  background: var(--gradient);
  opacity: 0;
  transition: opacity .25s ease;
  z-index: -1;
}

.service-card:hover .service-icon { color: white; }
.service-card:hover .service-icon::after { opacity: 1; z-index: 1; }

.service-card .service-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  margin-top: 1rem;
  font-weight: 600;
  font-size: .9rem;
  color: var(--accent);
}

.service-card .service-link:hover { gap: .65rem; }

.stats-section {
  background: var(--bg-dark);
  color: white;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: "";
  position: absolute;
  pointer-events: none;
  inset: 0;
  background:
    radial-gradient(circle at 15% 30%, rgba(6, 182, 212, .15), transparent 50%),
    radial-gradient(circle at 85% 70%, rgba(30, 58, 138, .25), transparent 50%);
}

.stats-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item { padding: 1rem; }

.stat-number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff 0%, #67e8f9 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  margin-bottom: .5rem;
  letter-spacing: -.02em;
}

.stat-label {
  font-size: .95rem;
  color: rgba(255,255,255,.75);
  font-weight: 500;
  letter-spacing: .01em;
}

.destinations { background: var(--bg-alt); }

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.75rem;
}

.destination-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all .3s ease;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.destination-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.destination-card .card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.destination-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.destination-card:hover .card-image img { transform: scale(1.06); }

.destination-card .card-image::after {
  content: "";
  position: absolute;
  pointer-events: none;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,.5) 0%, transparent 50%);
  opacity: 0;
  transition: opacity .3s ease;
}

.destination-card:hover .card-image::after { opacity: 1; }

.destination-card .badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(10px);
  padding: .35rem .85rem;
  border-radius: 100px;
  font-size: .75rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: .05em;
  text-transform: uppercase;
  z-index: 2;
}

.destination-card .card-body { padding: 1.5rem; }

.destination-card .card-body h3 {
  font-size: 1.2rem;
  margin-bottom: .5rem;
}

.destination-card .card-body p {
  font-size: .92rem;
  margin-bottom: 1rem;
}

.rating-row {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.stars { color: #f59e0b; letter-spacing: .1em; }

.rating-score { font-weight: 700; color: var(--text); }

.rating-score small { color: var(--text-muted); font-weight: 400; margin-left: .25rem; }

.testimonials { background: var(--bg); }

.testimonial-carousel {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform .5s cubic-bezier(.22, .61, .36, 1);
}

.testimonial-slide {
  min-width: 100%;
  padding: 0 .75rem;
}

.testimonial-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.testimonial-stars {
  color: #f59e0b;
  font-size: 1.15rem;
  letter-spacing: .15em;
  margin-bottom: 1.25rem;
}

.testimonial-card blockquote {
  font-size: 1.15rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
  position: relative;
}

.testimonial-card blockquote::before {
  content: """;
  position: absolute;
  pointer-events: none;
  font-family: Georgia, serif;
  font-size: 5rem;
  color: var(--accent);
  opacity: .12;
  top: -2rem;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.testimonial-author img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 2px var(--accent);
}

.testimonial-author-info { text-align: left; }
.testimonial-author-info strong {
  display: block;
  color: var(--text);
  font-weight: 700;
}
.testimonial-author-info span {
  font-size: .85rem;
  color: var(--text-muted);
}

.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--text);
  transition: all .25s ease;
}

.carousel-btn:hover {
  background: var(--gradient);
  color: white;
  border-color: transparent;
  transform: scale(1.08);
}

.carousel-dots { display: flex; gap: .5rem; }

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--border);
  cursor: pointer;
  transition: all .25s ease;
  padding: 0;
}

.carousel-dot.active {
  background: var(--accent);
  transform: scale(1.3);
}

.blog-preview { background: var(--bg-alt); }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
}

.blog-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all .3s ease;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.blog-card .card-image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.blog-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.blog-card:hover .card-image img { transform: scale(1.05); }

.blog-card .category-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gradient);
  color: white;
  padding: .3rem .8rem;
  border-radius: 100px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .03em;
  z-index: 2;
}

.blog-card .card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-date {
  font-size: .8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 600;
  margin-bottom: .75rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}

.blog-card h3 {
  font-size: 1.15rem;
  margin-bottom: .75rem;
  line-height: 1.4;
}

.blog-card h3 a { color: var(--text); }
.blog-card h3 a:hover { color: var(--primary); }

.blog-card p { font-size: .9rem; margin-bottom: 1rem; flex: 1; }

.read-more {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-weight: 600;
  font-size: .9rem;
  color: var(--accent);
  margin-top: auto;
}

.read-more:hover { gap: .65rem; }

.cta {
  background: var(--gradient);
  color: white;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  pointer-events: none;
  top: -50%;
  right: -10%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(6, 182, 212, .35) 0%, transparent 60%);
}

.cta::after {
  content: "";
  position: absolute;
  pointer-events: none;
  bottom: -50%;
  left: -10%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,.1) 0%, transparent 60%);
}

.cta-content {
  position: relative;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.cta-content h2 { color: white; margin-bottom: 1rem; }
.cta-content p {
  color: rgba(255,255,255,.9);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn-primary {
  background: white;
  color: var(--primary);
  box-shadow: 0 8px 20px rgba(0,0,0,.2);
}

.cta-buttons .btn-primary:hover {
  background: var(--bg-alt);
  color: var(--primary-dark);
}

.footer {
  background: var(--bg-darker);
  color: rgba(255,255,255,.7);
  padding: 4rem 0 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-brand { max-width: 320px; }

.footer-brand .navbar-brand { margin-bottom: 1.25rem; }
.footer-brand .navbar-brand .site-name {
  background: linear-gradient(135deg, #fff 0%, #67e8f9 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-brand p {
  color: rgba(255,255,255,.6);
  font-size: .92rem;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: .75rem;
}

.social-links a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,.05);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  transition: all .25s ease;
  font-size: .95rem;
}

.social-links a:hover {
  background: var(--gradient);
  color: white;
  transform: translateY(-3px);
}

.footer h4 {
  color: white;
  font-size: 1rem;
  margin-bottom: 1.25rem;
  font-weight: 700;
}

.footer-links ul, .footer-contact ul {
  list-style: none;
}

.footer-links li, .footer-contact li {
  margin-bottom: .65rem;
  font-size: .92rem;
}

.footer-links a {
  color: rgba(255,255,255,.65);
  transition: all .2s ease;
}

.footer-links a:hover {
  color: var(--accent-light);
  padding-left: 6px;
}

.footer-contact li {
  display: flex;
  gap: .65rem;
  align-items: flex-start;
  color: rgba(255,255,255,.7);
}

.footer-contact a { color: rgba(255,255,255,.7); }
.footer-contact a:hover { color: var(--accent-light); }

.footer-contact .icon { color: var(--accent-light); flex-shrink: 0; }

.footer-bottom {
  padding: 1.5rem 0;
  text-align: center;
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom .legal-links {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.footer-bottom .legal-links a { color: rgba(255,255,255,.6); }
.footer-bottom .legal-links a:hover { color: var(--accent-light); }

.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-intro .about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-intro .about-image::before {
  content: "";
  position: absolute;
  pointer-events: none;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: var(--gradient);
  border-radius: 50%;
  z-index: -1;
  opacity: .3;
  filter: blur(40px);
}

.about-intro img { display: block; width: 100%; aspect-ratio: 4/3; object-fit: cover; }

.about-intro .text-block h2 { margin-bottom: 1.25rem; }

.values-section { background: var(--bg-alt); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.value-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all .3s ease;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.value-card .value-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  background: var(--gradient-soft);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.team-card {
  text-align: center;
  background: var(--bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all .3s ease;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.team-card .team-image {
  aspect-ratio: 4/5;
  overflow: hidden;
}

.team-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.team-card:hover img { transform: scale(1.05); }

.team-info { padding: 1.25rem; }

.team-info h3 { font-size: 1.1rem; margin-bottom: .25rem; }

.team-info .role {
  color: var(--accent);
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: .5rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.team-info .bio { font-size: .88rem; margin-bottom: 0; }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-card {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all .25s ease;
}

.contact-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
}

.contact-card .icon-box {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--gradient-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-card h4 { font-size: 1rem; margin-bottom: .3rem; }
.contact-card p, .contact-card a { font-size: .92rem; margin: 0; color: var(--text-muted); }
.contact-card a:hover { color: var(--accent); }

.contact-form {
  background: var(--bg);
  padding: 2.25rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.contact-form h2 { margin-bottom: 1.5rem; font-size: 1.5rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-size: .88rem;
  font-weight: 600;
  margin-bottom: .4rem;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .8rem 1rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: inherit;
  font-size: .95rem;
  background: var(--bg);
  color: var(--text);
  transition: all .2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(6, 182, 212, .12);
}

.form-group textarea { resize: vertical; min-height: 130px; }

.form-feedback {
  margin-top: 1rem;
  padding: .75rem 1rem;
  border-radius: 8px;
  font-size: .88rem;
  display: none;
}
.form-feedback.success {
  display: block;
  background: rgba(34, 197, 94, .1);
  color: #15803d;
  border: 1px solid rgba(34, 197, 94, .25);
}
.form-feedback.error {
  display: block;
  background: rgba(239, 68, 68, .1);
  color: #b91c1c;
  border: 1px solid rgba(239, 68, 68, .25);
}

.map-block {
  margin-top: 2rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.map-block iframe { width: 100%; height: 360px; border: 0; display: block; }

.article-wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.article-meta {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}

.article-author {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.article-author img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.article-author strong { display: block; color: var(--text); font-size: .9rem; }
.article-author .meta-info { font-size: .8rem; color: var(--text-muted); }

.article-tag {
  background: var(--gradient-soft);
  color: var(--primary);
  font-size: .75rem;
  font-weight: 700;
  padding: .3rem .85rem;
  border-radius: 100px;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.article-content h2 {
  font-size: 1.75rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.article-content h3 {
  font-size: 1.3rem;
  margin-top: 2rem;
  margin-bottom: .75rem;
}

.article-content p { margin-bottom: 1.25rem; color: var(--text); line-height: 1.75; }

.article-content ul, .article-content ol {
  margin: 1rem 0 1.5rem 1.5rem;
  color: var(--text);
}
.article-content li { margin-bottom: .5rem; line-height: 1.7; }

.article-content blockquote {
  border-left: 4px solid var(--accent);
  background: var(--bg-alt);
  padding: 1.25rem 1.5rem;
  margin: 1.75rem 0;
  border-radius: 0 12px 12px 0;
  font-style: italic;
  color: var(--text);
}

.article-featured-image {
  margin: 0 0 2rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.article-featured-image img {
  width: 100%;
  aspect-ratio: 2/1;
  object-fit: cover;
}

.related-articles {
  background: var(--bg-alt);
  padding: 4rem 0;
  border-top: 1px solid var(--border);
}

.related-articles h2 {
  text-align: center;
  margin-bottom: 2.5rem;
}

.legal-page {
  padding: 4rem 0;
  background: var(--bg);
}

.legal-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.legal-content p, .legal-content li {
  color: var(--text);
  line-height: 1.75;
  margin-bottom: .75rem;
}

.legal-content ul { margin: 1rem 0 1rem 1.5rem; }

.legal-content .updated {
  display: inline-block;
  padding: .35rem .9rem;
  background: var(--gradient-soft);
  border-radius: 100px;
  font-size: .85rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.faq-section { background: var(--bg-alt); }

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all .25s ease;
}

.faq-item[open] {
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
}

.faq-item summary {
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  font-size: 1rem;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--accent);
  transition: transform .25s ease;
  font-weight: 400;
  line-height: 1;
}

.faq-item[open] summary::after { content: "−"; }

.faq-item .faq-body {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  max-width: 480px;
  margin: 0 auto;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  display: none;
  align-items: flex-start;
  gap: 1rem;
  font-size: .88rem;
}

.cookie-banner.show { display: flex; }

.cookie-banner p { margin: 0; flex: 1; color: var(--text-muted); }
.cookie-banner p a { color: var(--accent); text-decoration: underline; }

.cookie-banner .btn {
  padding: .5rem 1.1rem;
  font-size: .85rem;
  flex-shrink: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .footer-content { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .about-intro,
  .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  section { padding: 3.5rem 0; }
  .menu-toggle { display: flex; }
  .nav-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    padding: 1.5rem;
    gap: .5rem;
    border-top: 1px solid var(--border);
    box-shadow: var(--shadow);
    transform: translateY(-110%);
    transition: transform .3s ease;
    z-index: 999;
  }
  .nav-menu.open { transform: translateY(0); }
  .nav-menu li { width: 100%; }
  .nav-menu a { padding: .75rem 0; display: block; }
  .nav-menu .btn { display: block; text-align: center; margin-top: .5rem; }
  .hero { min-height: auto; padding: 4rem 0 3rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-content { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .cookie-banner { flex-direction: column; align-items: stretch; }
}
