/* ============================================
   深海沉船打捞与水下考古纪录片传媒 - 主样式表
   色彩体系：深海幽灵蓝 + 潜水探照灯黄
   ============================================ */

/* CSS Variables */
:root {
    --primary: #0a2e5c;
    --primary-light: #1a4a8a;
    --primary-dark: #061d3a;
    --accent: #f0b429;
    --accent-light: #f5c84c;
    --accent-dark: #d49b1f;
    --bg-dark: #040d1a;
    --bg-medium: #0c1f3d;
    --bg-light: #132d54;
    --card-bg: rgba(10, 46, 92, 0.6);
    --card-border: rgba(240, 180, 41, 0.2);
    --text-primary: #e8f0ff;
    --text-secondary: #a8c4e0;
    --text-muted: #6b8db5;
    --white: #ffffff;
    --gradient-hero: linear-gradient(135deg, rgba(4, 13, 26, 0.85), rgba(10, 46, 92, 0.7));
    --gradient-card: linear-gradient(145deg, rgba(19, 45, 84, 0.8), rgba(10, 46, 92, 0.4));
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.5);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 30px rgba(240, 180, 41, 0.3);
    --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 & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

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

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

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

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

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

.c03e500c2 {
    text-align: center;
}

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

.c4287274c {
    width: 200px;
    height: 3px;
    background: var(--bg-medium);
    border-radius: 3px;
    overflow: hidden;
}

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

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

.ce0a54bdb.scrolled {
    background: rgba(4, 13, 26, 0.95);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

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

.c4d71ac16 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 2px;
}

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

.c81cb2b78 {
    display: flex;
    align-items: center;
    gap: 35px;
}

.c81cb2b78 a {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

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

.c81cb2b78 a:hover,
.c81cb2b78 a.c0ba0ce39 {
    color: var(--white);
}

.c81cb2b78 a:hover::after,
.c81cb2b78 a.c0ba0ce39::after {
    width: 100%;
}

.c5308f845 {
    background: var(--accent);
    color: var(--primary-dark) !important;
    padding: 10px 24px !important;
    border-radius: 30px;
    font-weight: 600 !important;
}

.c5308f845::after {
    display: none !important;
}

.c5308f845:hover {
    background: var(--accent-light) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

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

.c54456c1a span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

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

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

.c6037cb9b {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
}

.caf93074d {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.c468b277c {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(240, 180, 41, 0.4);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.c468b277c:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; }
.c468b277c:nth-child(2) { left: 25%; top: 60%; animation-delay: 1s; }
.c468b277c:nth-child(3) { left: 45%; top: 30%; animation-delay: 2s; }
.c468b277c:nth-child(4) { left: 65%; top: 70%; animation-delay: 3s; }
.c468b277c:nth-child(5) { left: 80%; top: 40%; animation-delay: 4s; }
.c468b277c:nth-child(6) { left: 90%; top: 80%; animation-delay: 5s; }

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.4; }
    50% { transform: translateY(-30px) scale(1.5); opacity: 0.8; }
}

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

.cb0b0b486 {
    display: inline-block;
    background: rgba(240, 180, 41, 0.15);
    border: 1px solid rgba(240, 180, 41, 0.3);
    color: var(--accent);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.c34bd788b {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--white), var(--text-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cf18c0801 {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.8;
}

.c9cfc6329 {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

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

.c76030aae:hover {
    background: var(--accent-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
    color: var(--primary-dark);
}

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

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

/* Section Common */
.ca01b0e23 {
    padding: 100px 0;
    position: relative;
}

.c0f07ed00 {
    background: var(--bg-dark);
}

.ca642f03c {
    background: var(--bg-medium);
}

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

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

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

.c1b717221 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--white);
}

.c62a9cee5 {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* Trust Section */
.c9a770927 {
    padding: 60px 0;
    background: var(--bg-medium);
    border-top: 1px solid rgba(240, 180, 41, 0.1);
    border-bottom: 1px solid rgba(240, 180, 41, 0.1);
}

.c77aca7a5 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    align-items: center;
}

.c4f3c6931 {
    text-align: center;
}

.c9c1f5c2a {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 8px;
}

.c485773cb {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Services Section */
.c800f4d76 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.c4cb58e66 {
    background: var(--gradient-card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

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

.c4cb58e66:hover {
    transform: translateY(-10px);
    border-color: rgba(240, 180, 41, 0.4);
    box-shadow: var(--shadow-lg);
}

.c4cb58e66:hover::before {
    opacity: 1;
}

.c9b6ffbc3 {
    width: 60px;
    height: 60px;
    background: rgba(240, 180, 41, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 1.5rem;
}

.c4cb58e66 h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--white);
}

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

.c4cb58e66 .c08ea18a4 {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 20px;
    color: var(--accent);
    font-weight: 500;
    font-size: 0.9rem;
}

.c4cb58e66 .c08ea18a4:hover {
    gap: 10px;
}

/* Cases Gallery */
.c663adeec {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

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

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

.c6ca28ebc:hover img {
    transform: scale(1.1);
}

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

.c6ca28ebc:hover .ceedf5ec7 {
    transform: translateY(0);
    opacity: 1;
}

.ceedf5ec7 h3 {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 8px;
}

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

.cd3be482f {
    display: inline-block;
    background: rgba(240, 180, 41, 0.2);
    color: var(--accent);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    margin-bottom: 10px;
}

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

.cb54b346d {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--gradient-card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    margin-bottom: 20px;
    transition: var(--transition);
}

.cb54b346d:hover {
    border-color: rgba(240, 180, 41, 0.4);
    transform: translateX(5px);
}

.c3059364b {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: rgba(240, 180, 41, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

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

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

.cb034870b {
    background: var(--gradient-card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
}

.cb034870b h3 {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 15px;
}

.cb034870b p {
    color: var(--text-secondary);
    margin-bottom: 25px;
}

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

.c4414d4fb::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(240, 180, 41, 0.05), transparent 70%);
    animation: rotateBg 30s linear infinite;
}

@keyframes rotateBg {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.c37a6ba8c {
    position: relative;
    z-index: 1;
}

.c06f7b39e {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.c8510be01 {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.c485b81fc {
    background: var(--bg-dark);
    border-top: 1px solid rgba(240, 180, 41, 0.1);
    padding: 60px 0 30px;
}

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

.c6d96d77f p {
    color: var(--text-secondary);
    margin-top: 15px;
    font-size: 0.9rem;
    line-height: 1.8;
}

.c6208e1f0 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
}

.ca60e7d71 {
    list-style: none;
}

.ca60e7d71 li {
    margin-bottom: 12px;
}

.ca60e7d71 a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: var(--transition);
}

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

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

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

/* Process Module */
.ce1055e6e {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 40px 0;
}

.ce1055e6e::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--primary-light), var(--accent));
}

.c4b5ad9d9 {
    position: relative;
    text-align: center;
    flex: 1;
    padding: 0 15px;
}

.cd11bc4e0 {
    width: 50px;
    height: 50px;
    background: var(--accent);
    color: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 auto 15px;
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-glow);
}

.c4b5ad9d9 h4 {
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 8px;
}

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

/* Quote Calculator */
.cf9c11a68 {
    background: var(--gradient-card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 50px;
    backdrop-filter: blur(10px);
}

.ce5707b71 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

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

.cb790aaca label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
    font-weight: 500;
}

.cb790aaca input,
.cb790aaca select,
.cb790aaca textarea {
    background: rgba(4, 13, 26, 0.6);
    border: 1px solid rgba(240, 180, 41, 0.2);
    border-radius: var(--radius);
    padding: 14px 18px;
    color: var(--text-primary);
    font-size: 0.95rem;
    transition: var(--transition);
    font-family: var(--font-main);
}

.cb790aaca input:focus,
.cb790aaca select:focus,
.cb790aaca textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 15px rgba(240, 180, 41, 0.1);
}

.cb790aaca.cbc4fea72 {
    grid-column: 1 / -1;
}

.c25499518 {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 10px;
}

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

.c84d627d3 {
    background: var(--gradient-card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

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

.c84d627d3 img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.c1f2b40ae {
    padding: 25px;
}

.c35985cac {
    font-size: 0.8rem;
    color: var(--accent);
    margin-bottom: 10px;
}

.c84d627d3 h3 {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 10px;
    line-height: 1.5;
}

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

/* Page Banner */
.c951399fa {
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.c951399fa::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
}

.cd2ee5bdb {
    position: relative;
    z-index: 1;
}

.c951399fa h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.c951399fa p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.ca9739e16 {
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.ca9739e16 a {
    color: var(--text-secondary);
}

.ca9739e16 span {
    margin: 0 8px;
}

/* Contact Form */
.cb9fe693c {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.cbae89eaf {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.c5bf06de3 {
    width: 50px;
    height: 50px;
    background: rgba(240, 180, 41, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.cbae89eaf h4 {
    color: var(--white);
    margin-bottom: 5px;
}

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

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

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

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

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

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

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

/* Counter Animation */
.cdd31509f {
    display: inline-block;
}

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

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

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

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

.cb469b65d {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.cc878aac2 {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition);
}

.cc878aac2.c0ba0ce39 {
    background: var(--accent);
    transform: scale(1.3);
}

.ce747e161 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(4, 13, 26, 0.7);
    border: 1px solid rgba(240, 180, 41, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.2rem;
}

.ce747e161:hover {
    background: var(--accent);
    color: var(--primary-dark);
}

.ce747e161.c0300d6a1 { left: 20px; }
.ce747e161.caf03fa19 { right: 20px; }

/* Success Message */
.cade11ab9 {
    display: none;
    text-align: center;
    padding: 40px;
    background: var(--gradient-card);
    border: 1px solid rgba(240, 180, 41, 0.3);
    border-radius: var(--radius-lg);
}

.cade11ab9.show {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.c9cb43fd5 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.cade11ab9 h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 10px;
}

.cade11ab9 p {
    color: var(--text-secondary);
}

/* Responsive */
@media (max-width: 1024px) {
    .c800f4d76 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cc03cb517 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .c34bd788b {
        font-size: 2.8rem;
    }
    
    .c77aca7a5 {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .c81cb2b78 {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--bg-dark);
        flex-direction: column;
        padding: 80px 40px;
        gap: 25px;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
    }
    
    .c81cb2b78.open {
        right: 0;
    }
    
    .c54456c1a {
        display: flex;
    }
    
    .c34bd788b {
        font-size: 2rem;
    }
    
    .cf18c0801 {
        font-size: 1rem;
    }
    
    .ca01b0e23 {
        padding: 60px 0;
    }
    
    .ca7133957 {
        padding: 0 20px;
    }
    
    .c1b717221 {
        font-size: 1.8rem;
    }
    
    .c800f4d76,
    .c663adeec,
    .c00026dda {
        grid-template-columns: 1fr;
    }
    
    .ce3a6805d {
        grid-template-columns: 1fr;
    }
    
    .ce5707b71 {
        grid-template-columns: 1fr;
    }
    
    .cb9fe693c {
        grid-template-columns: 1fr;
    }
    
    .cc03cb517 {
        grid-template-columns: 1fr;
    }
    
    .ce1055e6e {
        flex-direction: column;
        gap: 30px;
    }
    
    .ce1055e6e::before {
        top: 0;
        left: 50%;
        width: 2px;
        height: 100%;
    }
    
    .c9cfc6329 {
        flex-direction: column;
        align-items: center;
    }
    
    .c77aca7a5 {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .cf9c11a68 {
        padding: 30px 20px;
    }
    
    .c951399fa {
        height: 300px;
    }
    
    .c951399fa h1 {
        font-size: 2rem;
    }
    
    .c59de1488 img {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .c34bd788b {
        font-size: 1.6rem;
    }
    
    .c77aca7a5 {
        grid-template-columns: 1fr 1fr;
    }
    
    .c9c1f5c2a {
        font-size: 1.8rem;
    }
}
