/* ============================================
   {SITE_TITLE} - 全局样式表
   色彩体系：极地冰川白 + 极限跳伞橙
   ============================================ */

/* CSS Variables */
:root {
    --primary: #F0F8FF;          /* 极地冰川白 */
    --accent: #FF6B35;           /* 极限跳伞橙 */
    --accent-dark: #E55A2B;      /* 橙色深色 */
    --accent-light: #FF8C5A;     /* 橙色浅色 */
    --bg-dark: #0A0E1A;          /* 深色背景 */
    --bg-medium: #141B2D;        /* 中深背景 */
    --bg-light: #F5F7FA;         /* 浅色背景 */
    --card-bg: rgba(255, 255, 255, 0.08);  /* 磨砂卡片 */
    --card-bg-light: rgba(255, 255, 255, 0.95);
    --text-dark: #1A1A2E;        /* 深色文字 */
    --text-light: #E8E8E8;       /* 浅色文字 */
    --text-muted: #8892A4;       /* 次要文字 */
    --border: rgba(255, 255, 255, 0.1);
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    --shadow-light: 0 10px 40px rgba(0, 0, 0, 0.1);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --font-main: 'PingFang SC', 'Microsoft YaHei', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

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

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

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

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

ul, ol {
    list-style: none;
}

/* ============================================
   Loading Animation
   ============================================ */
.c1351af28 {
    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;
}

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

.cf3188b00 {
    text-align: center;
}

.cb6ed6df4 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
    animation: pulse 1.5s ease-in-out infinite;
}

.cca6b55eb {
    width: 200px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.cca6b55eb::after {
    content: '';
    display: block;
    width: 40%;
    height: 100%;
    background: var(--accent);
    border-radius: 3px;
    animation: loading 1.2s ease-in-out infinite;
}

@keyframes loading {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(350%); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* ============================================
   Navigation
   ============================================ */
.c4d43678b {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.c4d43678b.c43e278c9 {
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

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

.c49d5d4c1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 1px;
}

.c49d5d4c1 span {
    color: var(--accent);
}

.c12a57bb8 {
    display: flex;
    align-items: center;
    gap: 36px;
}

.cc829bacc {
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    padding: 4px 0;
}

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

.cc829bacc:hover::after,
.cc829bacc.cd1c515b7::after {
    width: 100%;
}

.cc829bacc:hover {
    color: var(--accent);
}

.c0a14f7fa {
    background: var(--accent);
    color: #fff;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.c0a14f7fa:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.cfb1ce406 {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.cfb1ce406 span {
    width: 28px;
    height: 2px;
    background: var(--text-light);
    transition: var(--transition);
}

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

.c7b85ca49 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% { transform: scale(1.1); }
    100% { transform: scale(1.0); }
}

.cf39f85bc {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(10, 14, 26, 0.7) 0%,
        rgba(10, 14, 26, 0.4) 50%,
        rgba(10, 14, 26, 0.6) 100%
    );
}

.c646ca774 {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}

.c039931b6 {
    display: inline-block;
    background: rgba(255, 107, 53, 0.2);
    border: 1px solid rgba(255, 107, 53, 0.5);
    color: var(--accent);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.c008351da {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.c008351da .c7da671cd {
    color: var(--accent);
    position: relative;
}

.c88aa5206 {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.cabbeaab6 {
    background: var(--accent);
    color: #fff;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cabbeaab6:hover {
    background: var(--accent-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

.cc814ec76 {
    background: transparent;
    color: var(--primary);
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cc814ec76:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-3px);
}

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

.ce1f849b5 span {
    display: block;
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    position: relative;
}

.ce1f849b5 span::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--accent);
    border-radius: 2px;
    animation: scrollDot 2s ease-in-out infinite;
}

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

@keyframes scrollDot {
    0%, 100% { opacity: 1; top: 8px; }
    50% { opacity: 0.3; top: 20px; }
}

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

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

.c11ca131f {
    background: var(--bg-medium);
    color: var(--text-light);
}

.cfd58987c {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.c2314652b {
    display: inline-block;
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.c0fe27780 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.3;
}

.c5e3489dc .c0fe27780 {
    color: var(--primary);
}

.c554a9916 {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   Trust Section (信任背书)
   ============================================ */
.c98133157 {
    background: var(--bg-dark);
    padding: 60px 0;
    border-bottom: 1px solid var(--border);
}

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

.c2a6e60aa {
    text-align: center;
}

.ce444bf01 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.cccd82b8b {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 8px;
}

/* ============================================
   Services Section
   ============================================ */
.c578b7dfe {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.c61c6a303 {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.c61c6a303::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    transform: scaleX(0);
    transition: var(--transition);
}

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

.c61c6a303:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.1);
}

.cebf87714 {
    width: 60px;
    height: 60px;
    background: rgba(255, 107, 53, 0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

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

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

.c61c6a303 .c19464cd7 {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--accent);
    font-weight: 600;
    margin-top: 16px;
    font-size: 0.9rem;
}

.c61c6a303 .c19464cd7:hover {
    gap: 12px;
}

/* ============================================
   Cases / Gallery Section
   ============================================ */
.c18750468 {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cf6ad74f4 {
    padding: 8px 24px;
    border-radius: 30px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
}

.cf6ad74f4.cd1c515b7,
.cf6ad74f4:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

.c4ec7fca2 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 24px;
}

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

.c51e3d5c5 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

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

.c51e3d5c5:hover .c6fd1195f {
    transform: translateY(0);
    opacity: 1;
}

.c6fd1195f h4 {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.c6fd1195f p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ============================================
   Pain Points Section
   ============================================ */
.c9aa8d29c {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.c7e8cd9d2 {
    background: var(--card-bg-light);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.c7e8cd9d2:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.c7e8cd9d2 .c7d4b65e2 {
    font-size: 2rem;
    margin-bottom: 16px;
}

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

.c7e8cd9d2 .c4b6810d6 {
    color: #e74c3c;
    font-size: 0.9rem;
    margin-bottom: 12px;
    padding: 8px 12px;
    background: rgba(231, 76, 60, 0.08);
    border-radius: 8px;
}

.c7e8cd9d2 .c8f3fc0a8 {
    color: #27ae60;
    font-size: 0.9rem;
    padding: 8px 12px;
    background: rgba(39, 174, 96, 0.08);
    border-radius: 8px;
}

/* ============================================
   CTA Section
   ============================================ */
.cae1dc4fa {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-medium) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cae1dc4fa::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

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

.c24cc91d4 h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: var(--primary);
    margin-bottom: 16px;
}

.c24cc91d4 p {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.c8a63fd90 {
    display: flex;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.c8a63fd90 input {
    flex: 1;
    min-width: 200px;
    padding: 14px 20px;
    border-radius: 50px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
}

.c8a63fd90 input:focus {
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.1);
}

.c8a63fd90 input::placeholder {
    color: var(--text-muted);
}

/* ============================================
   Footer
   ============================================ */
.c5bf26277 {
    background: var(--bg-dark);
    padding: 60px 0 30px;
    border-top: 1px solid var(--border);
}

.cd87a0063 {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

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

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

.ce9e89cfa h4 {
    color: var(--primary);
    font-size: 1rem;
    margin-bottom: 16px;
    font-weight: 600;
}

.ce9e89cfa a {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
    padding: 4px 0;
    transition: var(--transition);
}

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

.ca38d8d1a {
    border-top: 1px solid var(--border);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.ca38d8d1a p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ============================================
   Process Module (互动式服务流程)
   ============================================ */
.c5fb0a247 {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.c5fb0a247::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    transform: translateX(-50%);
}

.c5ced1bf4 {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
    position: relative;
}

.c5ced1bf4:nth-child(even) {
    flex-direction: row-reverse;
}

.c5ced1bf4 .ca49ccea6 {
    width: 45%;
    padding: 30px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.c5ced1bf4 .ca49ccea6:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
}

.c5ced1bf4 .c2345c58b {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    z-index: 2;
}

.ca49ccea6 h4 {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.ca49ccea6 p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ============================================
   Quote Calculator (智能报价工具)
   ============================================ */
.c089dd3ed {
    max-width: 700px;
    margin: 0 auto;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 50px 40px;
}

.c636863eb {
    margin-bottom: 24px;
}

.c636863eb label {
    display: block;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.c636863eb select,
.c636863eb input {
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
}

.c636863eb select:focus,
.c636863eb input:focus {
    border-color: var(--accent);
}

.c636863eb select option {
    background: var(--bg-dark);
    color: var(--text-light);
}

.c0301e121 {
    text-align: center;
    padding: 30px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: var(--radius);
    margin-top: 30px;
}

.c0301e121 .c3a45523b {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
}

.c0301e121 .cece0fdeb {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 8px;
}

/* ============================================
   Carousel (特色展示轮播)
   ============================================ */
.cda5882a1 {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.c5acbce4c {
    display: flex;
    transition: transform 0.6s ease;
}

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

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

.ca3a34d43 .c0f3e953a {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    background: linear-gradient(transparent, rgba(10, 14, 26, 0.9));
}

.ca3a34d43 .c0f3e953a h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.ca3a34d43 .c0f3e953a p {
    color: var(--text-muted);
}

.c02b61ee4 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 107, 53, 0.8);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 5;
}

.c02b61ee4:hover {
    background: var(--accent);
    transform: translateY(-50%) scale(1.1);
}

.c02b61ee4.c033c5b2d { left: 20px; }
.c02b61ee4.c744c50a1 { right: 20px; }

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

.c77f24321 .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: var(--transition);
}

.c77f24321 .dot.cd1c515b7 {
    background: var(--accent);
    width: 30px;
    border-radius: 5px;
}

/* ============================================
   Page Headers (内页顶部)
   ============================================ */
.c9652e390 {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.c9652e390 .cedeb0273 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 14, 26, 0.7);
}

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

.c2eb8a7a9 h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--primary);
    margin-bottom: 12px;
}

.c2eb8a7a9 .c1eaa8bcf {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.c2eb8a7a9 .c1eaa8bcf a {
    color: var(--accent);
}

/* ============================================
   Forms
   ============================================ */
.c2bd0922e {
    margin-bottom: 20px;
}

.c2bd0922e label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.c2bd0922e input,
.c2bd0922e textarea,
.c2bd0922e select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e0e0e0;
    border-radius: var(--radius);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
    font-family: var(--font-main);
}

.c2bd0922e input:focus,
.c2bd0922e textarea:focus,
.c2bd0922e select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

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

/* ============================================
   Animations (Scroll Reveal)
   ============================================ */
.cddd8ba82 {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.cddd8ba82.cd1c515b7 {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.cd1c515b7 {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.cd1c515b7 {
    opacity: 1;
    transform: translateX(0);
}

/* Counter Animation */
.counter {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
    .cd87a0063 {
        grid-template-columns: 1fr 1fr;
    }
    
    .c4ec7fca2 {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .c12a57bb8 {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--bg-dark);
        flex-direction: column;
        padding: 80px 30px;
        transition: var(--transition);
        gap: 24px;
    }
    
    .c12a57bb8.cd1c515b7 {
        right: 0;
    }
    
    .cfb1ce406 {
        display: flex;
    }
    
    .c008351da {
        font-size: 2.2rem;
    }
    
    .c88aa5206 {
        font-size: 1rem;
    }
    
    .c40c44ad6 {
        gap: 30px;
    }
    
    .c5fb0a247::before {
        left: 20px;
    }
    
    .c5ced1bf4 {
        flex-direction: column !important;
        align-items: flex-start;
        padding-left: 60px;
    }
    
    .c5ced1bf4 .c2345c58b {
        left: 20px;
        transform: none;
    }
    
    .c5ced1bf4 .ca49ccea6 {
        width: 100%;
    }
    
    .cd87a0063 {
        grid-template-columns: 1fr;
    }
    
    .ca38d8d1a {
        flex-direction: column;
        text-align: center;
    }
    
    .cc8779853 {
        padding: 60px 0;
    }
    
    .c9652e390 {
        height: 300px;
    }
    
    .ca3a34d43 img {
        height: 300px;
    }
    
    .c089dd3ed {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .c968804e2 {
        flex-direction: column;
        align-items: center;
    }
    
    .cabbeaab6, .cc814ec76 {
        width: 100%;
        justify-content: center;
    }
    
    .c8a63fd90 {
        flex-direction: column;
    }
    
    .c8a63fd90 input {
        min-width: auto;
    }
}

/* ============================================
   Utility Classes
   ============================================ */
.cf5b3196b { text-align: center; }
.text-accent { color: var(--accent); }
.c6cec2664 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.c8ae8afb6 { margin-top: 40px; }
.mb-40 { margin-bottom: 40px; }

/* Success Message */
.cb10a2630 {
    display: none;
    text-align: center;
    padding: 40px;
    background: rgba(39, 174, 96, 0.1);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(39, 174, 96, 0.3);
}

.cb10a2630.show {
    display: block;
}

.cb10a2630 h3 {
    color: #27ae60;
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.cb10a2630 p {
    color: var(--text-muted);
}
