/* ============================================
   {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 */
.cd517370b {
  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;
}

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

.c375c2b0b {
  text-align: center;
}

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

.c7f7a677a {
  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 */
.c3b5dd9bf {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  background: transparent;
}

.c3b5dd9bf.c751d2c0a {
  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);
}

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

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

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

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

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

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

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

.cfa81c415 a:hover::after,
.cfa81c415 a.cb14e4c54::after {
  width: 100%;
}

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

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

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

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

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

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

.c3c94b3c3:hover .c9172363d {
  transform: scale(1);
}

.c1cc80e0e {
  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%
  );
}

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

.cdd761c2a {
  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;
}

.c3c94b3c3 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);
}

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

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

.cdf36a5ca {
  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);
}

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

.cfd98dfbe {
  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);
}

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

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

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

.ccd85b42a 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 */
.cd289d2fc {
  padding: 100px 0;
}

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

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

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

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

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

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

.c2e2f6cf4 .c7616b230 {
  color: var(--text-light);
}

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

.c2e2f6cf4 .c1d8023b3 {
  color: rgba(255, 255, 255, 0.7);
}

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

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

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

.c97770326:hover {
  opacity: 1;
}

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

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

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

.c966345a8 {
  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;
}

.c966345a8::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;
}

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

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

.c4635735a {
  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;
}

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

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

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

.c966345a8 .c9ac80757:hover {
  color: var(--accent);
  gap: 10px;
}

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

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

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

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

.c6b54088d {
  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);
}

.c280f58b0:hover .c6b54088d {
  transform: translateY(0);
  opacity: 1;
}

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

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

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

.c84f7879a {
  list-style: none;
}

.c3aeab5f4 {
  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);
}

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

.cb5a854d5 {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

.cde9f5fe5 {
  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);
}

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

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

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

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

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

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

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

.c1a5a77e9 {
  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;
}

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

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

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

.c7968eb5a {
  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;
}

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

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

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

.cd7aa11f4 input,
.cd7aa11f4 select,
.cd7aa11f4 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);
}

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

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

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

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

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

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

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

.c5a835030 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 */
.c936718f3 {
  background: var(--bg-dark);
  padding: 80px 0 30px;
  color: var(--text-light);
}

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

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

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

.cf4ade44a ul {
  list-style: none;
}

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

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

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

.c97e47d08 {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c4c7797eb:hover .c99cde63f img {
  transform: scale(1.05);
}

.c567d043a {
  padding: 24px;
}

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

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

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

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

.c0b3d03ff .cd7aa11f4 label {
  color: var(--text-dark);
}

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

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

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

.c987b9069.show {
  display: block;
}

.c987b9069 .c8decde8d {
  font-size: 60px;
  margin-bottom: 20px;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .cfa81c415 {
    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);
  }

  .cfa81c415.cb14e4c54 {
    display: flex;
  }

  .cdbcab96d {
    display: flex;
  }

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

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

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

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

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

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

  .cd289d2fc {
    padding: 60px 0;
  }

  .c3c94b3c3 {
    min-height: 600px;
  }

  .c95651f40 {
    padding: 0 20px;
  }

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

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

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

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

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

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

  .ce8df4b39 {
    gap: 30px;
  }

  .ca3c59c43 img {
    height: 300px;
  }

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

  .c7968eb5a {
    padding: 30px 20px;
  }

  .c69811dfa {
    height: 300px;
  }
}

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

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

  .c754ed310 {
    padding: 0 20px;
  }
}
