/* ============================================
   Collaborwz — Design System
   Brand: coral→orange gradient + teal accent
   ============================================ */

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

:root {
  --coral: #E94E5C;
  --orange: #FF6B2C;
  --orange-soft: #FF8A4C;
  --teal: #1F7A7A;
  --teal-deep: #16585B;

  --bg: #FFF8F4;
  --bg-alt: #FFFFFF;
  --bg-elevated: #FFFFFF;
  --surface: #FFF1E8;
  --text: #1A1424;
  --text-soft: #5B5566;
  --text-muted: #8A8294;
  --border: #F3E3D6;
  --shadow-sm: 0 2px 8px rgba(233, 78, 92, 0.06);
  --shadow-md: 0 8px 30px rgba(233, 78, 92, 0.10);
  --shadow-lg: 0 20px 60px rgba(255, 107, 44, 0.18);

  --gradient-brand: linear-gradient(135deg, #E94E5C 0%, #FF6B2C 100%);
  --gradient-soft: linear-gradient(135deg, rgba(233, 78, 92, 0.08) 0%, rgba(255, 107, 44, 0.08) 100%);

  --font-display: 'Sora', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-script: 'Caveat', cursive;

  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --container: 1200px;
}

[data-theme="dark"] {
  --bg: #0F0B14;
  --bg-alt: #15101C;
  --bg-elevated: #1B1525;
  --surface: #1F1828;
  --text: #FBF6F1;
  --text-soft: #B8AEC0;
  --text-muted: #7A7186;
  --border: #2A2235;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 20px 60px rgba(255, 107, 44, 0.25);
  --gradient-soft: linear-gradient(135deg, rgba(233, 78, 92, 0.12) 0%, rgba(255, 107, 44, 0.12) 100%);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  transition: background 0.3s ease, color 0.3s ease;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* Typography */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
}
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.35rem; }
p { color: var(--text-soft); }

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

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  padding: 6px 14px;
  background: var(--gradient-soft);
  border-radius: 999px;
  margin-bottom: 18px;
}

.section { padding: 100px 0; position: relative; }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 64px; }
.section-head p { font-size: 1.1rem; margin-top: 14px; }

.gradient-text {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.script {
  font-family: var(--font-script);
  font-weight: 700;
  color: var(--teal);
  font-size: 1.3em;
  font-style: italic;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--gradient-brand);
  color: #fff;
  box-shadow: 0 8px 24px rgba(255, 107, 44, 0.35);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(255, 107, 44, 0.45); }
.btn-primary:active { transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border);
}
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-2px); }
.btn .arrow { transition: transform 0.3s ease; }
.btn:hover .arrow { transform: translateX(4px); }

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 248, 244, 0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s ease;
}
[data-theme="dark"] .navbar { background: rgba(15, 11, 20, 0.85); }
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo img { height: 44px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-soft);
  position: relative;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -8px;
  height: 3px;
  background: var(--gradient-brand);
  border-radius: 2px;
}
.nav-actions { display: flex; align-items: center; gap: 14px; }
.theme-toggle {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--surface);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  border: 1px solid var(--border);
  transition: all 0.2s;
}
.theme-toggle:hover { transform: rotate(20deg); border-color: var(--orange); }
.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 1.3rem;
}

/* Hero */
.hero { position: relative; padding: 80px 0 120px; overflow: hidden; }
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255, 107, 44, 0.18) 0%, transparent 60%);
  border-radius: 50%;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -150px; left: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(31, 122, 122, 0.15) 0%, transparent 60%);
  border-radius: 50%;
  z-index: 0;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-content { animation: fadeUp 0.8s ease both; }
.hero h1 { margin-bottom: 24px; }
.hero h1 .underline { position: relative; display: inline-block; }
.hero h1 .underline::after {
  content: '';
  position: absolute;
  left: 0; bottom: 4px;
  width: 100%; height: 12px;
  background: var(--gradient-brand);
  opacity: 0.25;
  z-index: -1;
  border-radius: 4px;
}
.hero-sub { font-size: 1.15rem; margin-bottom: 36px; max-width: 540px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label { font-size: 0.85rem; color: var(--text-muted); }

.hero-visual { position: relative; height: 480px; animation: fadeUp 0.8s 0.2s ease both; }
.orb {
  position: absolute;
  border-radius: 50%;
  background: var(--gradient-brand);
  filter: blur(2px);
}
.orb-1 {
  width: 280px; height: 280px;
  top: 40px; right: 60px;
  opacity: 0.9;
  animation: float 6s ease-in-out infinite;
}
.orb-2 {
  width: 140px; height: 140px;
  bottom: 60px; left: 20px;
  background: linear-gradient(135deg, var(--teal), var(--teal-deep));
  animation: float 5s ease-in-out infinite reverse;
}
.float-card {
  position: absolute;
  background: var(--bg-elevated);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--border);
  z-index: 2;
}
.fc-1 { top: 20px; left: 0; animation: float 4s ease-in-out infinite; }
.fc-2 { bottom: 80px; right: 0; animation: float 5s 1s ease-in-out infinite; }
.fc-3 { top: 200px; left: 30px; animation: float 4.5s 0.5s ease-in-out infinite; }
.fc-icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--gradient-soft);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
}
.fc-title { font-weight: 600; font-size: 0.9rem; }
.fc-sub { font-size: 0.75rem; color: var(--text-muted); }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Service Cards */
.services-bg { background: var(--bg-alt); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.service-card {
  background: var(--bg-elevated);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gradient-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s 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: 64px; height: 64px;
  border-radius: 18px;
  background: var(--gradient-soft);
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  margin-bottom: 24px;
  transition: all 0.4s ease;
}
.service-card:hover .service-icon { background: var(--gradient-brand); transform: scale(1.05) rotate(-5deg); }
.service-card h3 { margin-bottom: 12px; }
.service-card p { font-size: 0.95rem; margin-bottom: 20px; }
.service-link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-link .arrow { transition: transform 0.3s; }
.service-card:hover .service-link .arrow { transform: translateX(5px); }

/* Why Choose Us */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}
.why-item { text-align: center; padding: 24px; }
.why-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 12px;
}
.why-item h3 { margin-bottom: 10px; }
.why-item p { font-size: 0.95rem; }

/* CTA Banner */
.cta-banner {
  background: var(--gradient-brand);
  border-radius: var(--radius-xl);
  padding: 70px 60px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 400px; height: 400px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -50%; left: -10%;
  width: 350px; height: 350px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}
.cta-banner h2 { color: #fff; margin-bottom: 16px; position: relative; z-index: 1; }
.cta-banner p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}
.cta-banner .btn-primary { background: #fff; color: var(--orange); position: relative; z-index: 1; }
.cta-banner .btn-primary:hover { color: var(--coral); }

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.testimonial-card {
  background: var(--bg-elevated);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.stars { color: var(--orange); margin-bottom: 14px; font-size: 1rem; letter-spacing: 2px; }
.testimonial-card blockquote {
  font-size: 1rem;
  color: var(--text-soft);
  margin-bottom: 24px;
  font-style: italic;
  line-height: 1.7;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gradient-brand);
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  font-family: var(--font-display);
}
.author-name { font-weight: 600; font-size: 0.95rem; }
.author-role { font-size: 0.8rem; color: var(--text-muted); }

/* Footer */
.footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 70px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}
.footer-brand img { height: 50px; margin-bottom: 18px; }
.footer-brand p { font-size: 0.92rem; max-width: 320px; margin-bottom: 20px; }
.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--surface);
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.social-links a:hover { background: var(--gradient-brand); color: #fff; transform: translateY(-3px); }
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col a { color: var(--text-soft); font-size: 0.92rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Page Header */
.page-header {
  padding: 80px 0 60px;
  text-align: center;
  background: var(--gradient-soft);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(255, 107, 44, 0.1) 0%, transparent 60%);
  border-radius: 50%;
}
.page-header h1 { margin-bottom: 16px; position: relative; }
.page-header p { font-size: 1.15rem; max-width: 640px; margin: 0 auto; position: relative; }
.breadcrumb {
  display: inline-flex;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 18px;
  position: relative;
}
.breadcrumb a:hover { color: var(--orange); }

/* Service Detail Page */
.service-detail-card {
  background: var(--bg-elevated);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 32px;
  transition: all 0.3s;
}
.service-detail-card:hover { box-shadow: var(--shadow-md); border-color: rgba(255, 107, 44, 0.3); }
.service-detail-card .service-icon { margin-bottom: 0; }
.service-detail-card h3 { font-size: 1.6rem; margin-bottom: 12px; }
.service-detail-card .features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.feature-tag {
  padding: 6px 14px;
  background: var(--surface);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-soft);
  border: 1px solid var(--border);
}
.tech-list { margin-top: 18px; font-size: 0.85rem; color: var(--text-muted); }
.tech-list strong { color: var(--teal); font-weight: 600; }
.services-list { display: grid; gap: 24px; }

/* About Page */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--gradient-brand);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-lg);
}
.about-image .pattern { font-size: 8rem; color: rgba(255, 255, 255, 0.9); }
.about-text h2 { margin-bottom: 20px; }
.about-text p { font-size: 1.05rem; margin-bottom: 18px; }

.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.mv-card {
  background: var(--bg-elevated);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.mv-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 120px; height: 120px;
  background: var(--gradient-soft);
  border-radius: 50%;
  transform: translate(40px, -40px);
}
.mv-icon { font-size: 2.5rem; margin-bottom: 18px; position: relative; }
.mv-card h3 { font-size: 1.5rem; margin-bottom: 12px; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}
.team-card {
  text-align: center;
  background: var(--bg-elevated);
  padding: 32px 20px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.team-avatar {
  width: 100px; height: 100px;
  border-radius: 50%;
  background: var(--gradient-brand);
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  font-family: var(--font-display);
}
.team-card h4 { font-family: var(--font-display); margin-bottom: 4px; }
.team-card .role { font-size: 0.85rem; color: var(--orange); font-weight: 500; }

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}
.blog-card {
  background: var(--bg-elevated);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all 0.4s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.blog-thumb {
  height: 200px;
  background: var(--gradient-brand);
  display: grid;
  place-items: center;
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.95);
  position: relative;
  overflow: hidden;
}
.blog-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(0,0,0,0.15));
}
.blog-thumb.t2 { background: linear-gradient(135deg, #1F7A7A, #16585B); }
.blog-thumb.t3 { background: linear-gradient(135deg, #E94E5C, #FF6B2C); }
.blog-thumb.t4 { background: linear-gradient(135deg, #FF6B2C, #FFB347); }
.blog-thumb.t5 { background: linear-gradient(135deg, #16585B, #1F7A7A); }
.blog-thumb.t6 { background: linear-gradient(135deg, #E94E5C, #C73848); }
.blog-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.blog-meta {
  display: flex;
  gap: 14px;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.blog-meta .tag {
  color: var(--orange);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.blog-card h3 { font-size: 1.2rem; margin-bottom: 12px; line-height: 1.4; }
.blog-card p { font-size: 0.92rem; margin-bottom: 20px; flex: 1; }
.read-more {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--orange);
}

.blog-detail { max-width: 760px; margin: 0 auto; }
.blog-detail .blog-thumb {
  height: 380px;
  border-radius: var(--radius-xl);
  margin-bottom: 40px;
  font-size: 6rem;
}
.blog-detail h1 { margin-bottom: 18px; }
.blog-detail .blog-meta { margin-bottom: 30px; font-size: 0.9rem; }
.blog-detail h2 { margin: 36px 0 16px; font-size: 1.7rem; }
.blog-detail h3 { margin: 28px 0 12px; }
.blog-detail p { font-size: 1.05rem; margin-bottom: 18px; line-height: 1.8; }
.blog-detail blockquote {
  border-left: 4px solid var(--orange);
  padding: 16px 24px;
  margin: 24px 0;
  background: var(--gradient-soft);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
  color: var(--text);
}
.blog-detail ul { margin: 18px 0 18px 24px; }
.blog-detail ul li {
  list-style: none;
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  color: var(--text-soft);
}
.blog-detail ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: bold;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
}
.contact-info-card {
  background: var(--gradient-brand);
  color: #fff;
  padding: 50px 40px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.contact-info-card::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 300px; height: 300px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}
.contact-info-card h2 { color: #fff; margin-bottom: 14px; position: relative; }
.contact-info-card > p { color: rgba(255, 255, 255, 0.9); margin-bottom: 36px; position: relative; }
.info-list { position: relative; }
.info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.info-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.18);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.info-item h4 { color: #fff; font-size: 0.95rem; margin-bottom: 4px; }
.info-item p { color: rgba(255, 255, 255, 0.85); font-size: 0.9rem; margin: 0; }

.contact-form {
  background: var(--bg-elevated);
  padding: 50px 40px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
  font-family: var(--font-display);
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all 0.2s;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 107, 44, 0.12);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.error-msg {
  display: none;
  color: var(--coral);
  font-size: 0.8rem;
  margin-top: 6px;
}
.form-group.error input,
.form-group.error textarea { border-color: var(--coral); }
.form-group.error .error-msg { display: block; }
.form-success {
  display: none;
  background: rgba(31, 122, 122, 0.1);
  border: 1.5px solid var(--teal);
  color: var(--teal);
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  margin-bottom: 18px;
  font-size: 0.92rem;
}
.form-success.show { display: block; }

.map-section { margin-top: 60px; }
.map-placeholder {
  width: 100%;
  height: 380px;
  border-radius: var(--radius-xl);
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
}
.map-placeholder iframe { width: 100%; height: 100%; border: 0; }

/* Responsive */
@media (max-width: 968px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { height: 380px; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .mv-grid { grid-template-columns: 1fr; }
  .service-detail-card { grid-template-columns: 1fr; gap: 20px; }
}
@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--bg-elevated);
    flex-direction: column;
    padding: 24px;
    gap: 18px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: grid; place-items: center; }
  .hero-stats { gap: 24px; }
  .stat-num { font-size: 1.6rem; }
  .cta-banner { padding: 50px 30px; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-form, .contact-info-card { padding: 36px 26px; }
  .nav-actions .btn { display: none; }
}
