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

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

.c3bc52ff6 {
  text-align: center;
}

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

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

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

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

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

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

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

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

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

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

.c22982c97 a:hover::after,
.c22982c97 a.c590d67f1::after {
  width: 100%;
}

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

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

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

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

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

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

.c833745d1:hover .c34aa39f4 {
  transform: scale(1);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c994d86b0 .cd07a5115 {
  color: var(--text-light);
}

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

.c994d86b0 .cb78fd681 {
  color: rgba(255, 255, 255, 0.7);
}

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

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

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

.c95e8e40c:hover {
  opacity: 1;
}

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

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

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

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

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

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

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

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

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

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

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

.c3edad4e5 .c91ee4f8b:hover {
  color: var(--accent);
  gap: 10px;
}

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

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

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

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

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

.c5ce3f187:hover .c9d1a193f {
  transform: translateY(0);
  opacity: 1;
}

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

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

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

.c680b520b {
  list-style: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.ce38e2546 ul {
  list-style: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c0ffd5112:hover .c0f732f5f img {
  transform: scale(1.05);
}

.c3e423f0f {
  padding: 24px;
}

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

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

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

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

.cdfe46862 .cff19d882 label {
  color: var(--text-dark);
}

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

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

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

.ccd62a74b.show {
  display: block;
}

.ccd62a74b .c9ac1c7ef {
  font-size: 60px;
  margin-bottom: 20px;
}

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

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

  .c22982c97.c590d67f1 {
    display: flex;
  }

  .c024f8e05 {
    display: flex;
  }

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

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

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

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

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

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

  .c96d0ff67 {
    padding: 60px 0;
  }

  .c833745d1 {
    min-height: 600px;
  }

  .c44b34919 {
    padding: 0 20px;
  }

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

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

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

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

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

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

  .c83e5105b {
    gap: 30px;
  }

  .c52b13085 img {
    height: 300px;
  }

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

  .cca81fcdf {
    padding: 30px 20px;
  }

  .c767a3f97 {
    height: 300px;
  }
}

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

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

  .ccca1e5a1 {
    padding: 0 20px;
  }
}
