/* ============================================
   {SITE_TITLE} - 房车露营地预订与BC荒野生存自媒体
   主色调：丛林迷彩绿 | 辅助色：篝火暖橙色
   ============================================ */

/* CSS Variables */
:root {
  --primary: #2d5016;
  --primary-light: #4a7c23;
  --primary-dark: #1a3009;
  --accent: #e8721c;
  --accent-light: #f59d4b;
  --accent-dark: #c45a0a;
  --bg-dark: #0f1a0a;
  --bg-medium: #1c2e14;
  --bg-light: #f5f7f3;
  --bg-section-alt: #eef2eb;
  --card-bg: rgba(255, 255, 255, 0.08);
  --card-bg-light: rgba(255, 255, 255, 0.92);
  --card-border: rgba(255, 255, 255, 0.12);
  --text-dark: #1a1a1a;
  --text-body: #333333;
  --text-light: #f0f0f0;
  --text-muted: #666666;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  --shadow-hover: 0 8px 40px rgba(0, 0, 0, 0.25);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-main: 'PingFang SC', 'Microsoft YaHei', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Reset & Base */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  color: var(--text-body);
  line-height: 1.8;
  background: var(--bg-light);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--accent);
}

/* Loading Animation */
.c2fcb93f0 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.c2fcb93f0.loaded {
  opacity: 0;
  visibility: hidden;
}

.cbfd8dab3 {
  text-align: center;
}

.c400f3df6 {
  width: 80px;
  height: 80px;
  animation: pulse 1.5s ease-in-out infinite;
}

.ca98bd10e {
  color: var(--text-light);
  margin-top: 16px;
  font-size: 14px;
  letter-spacing: 3px;
  opacity: 0.7;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.7; }
}

/* Header & Navigation */
.c7085f7ca {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  background: transparent;
}

.c7085f7ca.cd15c2f02 {
  background: rgba(15, 26, 10, 0.95);
  backdrop-filter: blur(20px);
  padding: 10px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.cd8c8c7a6 {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.c8590f4fe {
  display: flex;
  align-items: center;
  gap: 12px;
}

.c8590f4fe img {
  width: 44px;
  height: 44px;
  border-radius: 8px;
}

.c8590f4fe span {
  color: var(--text-light);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
}

.c85ec5f1d {
  display: flex;
  list-style: none;
  gap: 36px;
}

.c85ec5f1d a {
  color: var(--text-light);
  font-size: 15px;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
}

.c85ec5f1d a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.c85ec5f1d a:hover::after,
.c85ec5f1d a.c881c930b::after {
  width: 100%;
}

.cab91786b {
  background: var(--accent);
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
}

.cab91786b:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(232, 114, 28, 0.4);
}

/* Mobile Menu Toggle */
.c6d0d0459 {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.c6d0d0459 span {
  width: 28px;
  height: 3px;
  background: var(--text-light);
  border-radius: 3px;
  transition: var(--transition);
}

/* Hero Section */
.c8cba292a {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.caa532b4b {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.c8cba292a:hover .caa532b4b {
  transform: scale(1);
}

.cdc78d24d {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(15, 26, 10, 0.75) 0%,
    rgba(45, 80, 22, 0.45) 50%,
    rgba(15, 26, 10, 0.65) 100%
  );
}

.c5508c861 {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 40px;
  animation: fadeInUp 1s ease 0.5s both;
}

.c1283d3f3 {
  display: inline-block;
  background: rgba(232, 114, 28, 0.2);
  border: 1px solid var(--accent);
  color: var(--accent-light);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.c8cba292a h1 {
  color: var(--text-light);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.c8cba292a p {
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.8;
  margin-bottom: 36px;
}

.c165a6074 {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.c572df8b1 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(232, 114, 28, 0.3);
}

.c572df8b1:hover {
  background: var(--accent-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(232, 114, 28, 0.5);
  color: #fff;
}

.c6a93584a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-light);
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  border: 2px solid rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--transition);
}

.c6a93584a:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--text-light);
  transform: translateY(-3px);
  color: var(--text-light);
}

.c496c67d9 {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
}

.c496c67d9 span {
  display: block;
  width: 30px;
  height: 50px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 15px;
  position: relative;
}

.c496c67d9 span::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 10px;
  background: var(--accent);
  border-radius: 2px;
  animation: scrollDown 1.5s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

@keyframes scrollDown {
  0% { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(15px); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Section Common Styles */
.cdcf88791 {
  padding: 100px 0;
}

.cad32a80f {
  background: var(--bg-dark);
  color: var(--text-light);
}

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

.c3e18606d {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.cad7b5b9c {
  text-align: center;
  margin-bottom: 60px;
}

.c0b799f8b {
  display: inline-block;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.cefbca51f {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.3;
}

.cad32a80f .cefbca51f {
  color: var(--text-light);
}

.caaf517b7 {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

.cad32a80f .caaf517b7 {
  color: rgba(255, 255, 255, 0.7);
}

/* Trust Bar */
.cfa2fe1f9 {
  padding: 60px 0;
  background: var(--bg-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.c8eff358d {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.c7c469391 {
  text-align: center;
  opacity: 0.6;
  transition: var(--transition);
}

.c7c469391:hover {
  opacity: 1;
}

.c7c469391 .c439e2980 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  display: block;
}

.c7c469391 .c187cc332 {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
}

/* Services Grid */
.c1fd7b586 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.c9e9717b8 {
  background: var(--card-bg-light);
  border-radius: var(--radius);
  padding: 40px 30px;
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
}

.c9e9717b8::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.c9e9717b8:hover::before {
  transform: scaleX(1);
}

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

.cf89e5e12 {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 28px;
  color: #fff;
}

.c9e9717b8 h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.c9e9717b8 p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.c9e9717b8 .c11e8bc9e {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
}

.c9e9717b8 .c11e8bc9e:hover {
  color: var(--accent);
  gap: 10px;
}

/* Cases Gallery */
.cb2d9d8b0 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.c0af6ffdf {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.c0af6ffdf img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.c0af6ffdf:hover img {
  transform: scale(1.08);
}

.c48502e20 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
  transform: translateY(20px);
  opacity: 0;
  transition: var(--transition);
}

.c0af6ffdf:hover .c48502e20 {
  transform: translateY(0);
  opacity: 1;
}

.c48502e20 h4 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.c48502e20 p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}

/* Pain Points Section */
.c88f0908e {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: center;
}

.c5f3ff348 {
  list-style: none;
}

.cb4a70616 {
  display: flex;
  gap: 16px;
  padding: 24px;
  margin-bottom: 16px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--accent);
  transition: var(--transition);
}

.cb4a70616:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(8px);
}

.cd550d785 {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(232, 114, 28, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.c4a21d574 h4 {
  color: var(--text-light);
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.c4a21d574 p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.c13d4a1c9 {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

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

/* Carousel / Swiper */
.c23d57006 {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

.c52fcefa4 {
  display: flex;
  transition: transform 0.5s ease;
}

.c32013d0b {
  min-width: 100%;
  position: relative;
}

.c32013d0b img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.c69913f13 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
}

.c69913f13 h3 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.c69913f13 p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.c6eaa233d {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  pointer-events: none;
}

.c404e7d09 {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  pointer-events: all;
  transition: var(--transition);
}

.c404e7d09:hover {
  background: var(--accent);
}

.cf903e481 {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.cef07292b {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(45, 80, 22, 0.3);
  cursor: pointer;
  transition: var(--transition);
}

.cef07292b.c881c930b {
  background: var(--accent);
  width: 30px;
  border-radius: 5px;
}

/* Process Steps */
.c010a7777 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
}

.c010a7777::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 12.5%;
  width: 75%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0.3;
}

.ccba009d3 {
  text-align: center;
  position: relative;
}

.c108c0afb {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  position: relative;
  z-index: 2;
}

.ccba009d3 h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.ccba009d3 p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Quote Calculator */
.ccb3c2184 {
  background: linear-gradient(135deg, var(--bg-dark), var(--bg-medium));
}

.c06b1ce29 {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 50px;
}

.c697fc770 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

.c0840442e {
  display: flex;
  flex-direction: column;
}

.c0840442e label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

.c0840442e input,
.c0840442e select,
.c0840442e textarea {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  color: var(--text-light);
  font-size: 15px;
  transition: var(--transition);
  font-family: var(--font-main);
}

.c0840442e input:focus,
.c0840442e select:focus,
.c0840442e textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.12);
}

.c0840442e textarea {
  resize: vertical;
  min-height: 120px;
}

.cad5ef65d {
  text-align: center;
  margin-top: 30px;
}

/* CTA Section */
.c6f09ab7b {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.c6f09ab7b::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(232, 114, 28, 0.15), transparent);
}

.cbdc394f4 {
  position: relative;
  z-index: 2;
}

.c6f09ab7b h2 {
  color: var(--text-light);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.c6f09ab7b p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
.c2fd689c1 {
  background: var(--bg-dark);
  padding: 80px 0 30px;
  color: var(--text-light);
}

.caf8cd9be {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
}

.c2d676048 p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-top: 16px;
}

.c9a63aea9 h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-light);
}

.c9a63aea9 ul {
  list-style: none;
}

.c9a63aea9 ul li {
  margin-bottom: 12px;
}

.c9a63aea9 ul li a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}

.c9a63aea9 ul li a:hover {
  color: var(--accent);
  padding-left: 5px;
}

.c0c15dc04 {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.c0c15dc04 p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
}

/* Scroll Animations */
.c01fbfa1c {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.c169bbf75 {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.c169bbf75.visible {
  opacity: 1;
  transform: translateX(0);
}

.c55b774f4 {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.c55b774f4.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Counter Animation */
.cce89babb {
  font-variant-numeric: tabular-nums;
}

/* Page Banner (for inner pages) */
.c9f228782 {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.c9f228782 img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c9f228782 .ce3436286 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 26, 10, 0.7);
}

.c09b9c947 {
  position: relative;
  z-index: 2;
  text-align: center;
}

.c9f228782 h1 {
  color: var(--text-light);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 12px;
}

.c003f063e {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.c003f063e a {
  color: var(--accent-light);
}

/* Blog Cards */
.cb1dce6dd {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.c3a14b8d5 {
  background: var(--card-bg-light);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

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

.cb1fe9b8e {
  height: 220px;
  overflow: hidden;
}

.cb1fe9b8e img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.c3a14b8d5:hover .cb1fe9b8e img {
  transform: scale(1.05);
}

.c4d8ccb63 {
  padding: 24px;
}

.c21210aba {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
  font-size: 13px;
  color: var(--text-muted);
}

.c3a14b8d5 h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.5;
}

.c3a14b8d5 p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* Contact Form Light */
.ca26446da {
  background: #fff;
  border-radius: var(--radius);
  padding: 50px;
  box-shadow: var(--shadow);
}

.ca26446da .c0840442e label {
  color: var(--text-dark);
}

.ca26446da .c0840442e input,
.ca26446da .c0840442e select,
.ca26446da .c0840442e textarea {
  background: var(--bg-section-alt);
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: var(--text-body);
}

.ca26446da .c0840442e input:focus,
.ca26446da .c0840442e select:focus,
.ca26446da .c0840442e textarea:focus {
  border-color: var(--primary);
}

/* Success Message */
.c2d217b62 {
  display: none;
  text-align: center;
  padding: 40px;
}

.c2d217b62.show {
  display: block;
}

.c2d217b62 .c49261dba {
  font-size: 60px;
  margin-bottom: 20px;
}

.c2d217b62 h3 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 12px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .c85ec5f1d {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    background: var(--bg-dark);
    flex-direction: column;
    padding: 80px 40px;
    gap: 24px;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
  }

  .c85ec5f1d.c881c930b {
    display: flex;
  }

  .c6d0d0459 {
    display: flex;
  }

  .caf8cd9be {
    grid-template-columns: 1fr 1fr;
  }

  .cb2d9d8b0 {
    grid-template-columns: repeat(2, 1fr);
  }

  .c88f0908e {
    grid-template-columns: 1fr;
  }

  .c010a7777 {
    grid-template-columns: repeat(2, 1fr);
  }

  .c010a7777::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .c3e18606d {
    padding: 0 20px;
  }

  .cdcf88791 {
    padding: 60px 0;
  }

  .c8cba292a {
    min-height: 600px;
  }

  .c5508c861 {
    padding: 0 20px;
  }

  .c1fd7b586 {
    grid-template-columns: 1fr;
  }

  .cb2d9d8b0 {
    grid-template-columns: 1fr;
  }

  .cb1dce6dd {
    grid-template-columns: 1fr;
  }

  .c697fc770 {
    grid-template-columns: 1fr;
  }

  .caf8cd9be {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .c0c15dc04 {
    flex-direction: column;
    text-align: center;
  }

  .c8eff358d {
    gap: 30px;
  }

  .c32013d0b img {
    height: 300px;
  }

  .c010a7777 {
    grid-template-columns: 1fr;
  }

  .c06b1ce29 {
    padding: 30px 20px;
  }

  .c9f228782 {
    height: 300px;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .c165a6074 {
    flex-direction: column;
    align-items: center;
  }

  .cd8c8c7a6 {
    padding: 0 20px;
  }
}
