/* ===== CSS Variables ===== */
:root {
    --bg-dark: #030712;
    --bg-card: #0f172a;
    --bg-card-glass: rgba(15, 23, 42, 0.6);
    --neon-blue: #06b6d4;
    --neon-blue-glow: rgba(6, 182, 212, 0.4);
    --accent-gold: #d4a856;
    --accent-gold-light: #f4d47a;
    --accent-gold-dim: rgba(212, 168, 86, 0.15);
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #475569;
    --border-color: rgba(255, 255, 255, 0.08);
    --border-gold: rgba(212, 168, 86, 0.3);
    --gradient-gold: linear-gradient(135deg, #d4a856 0%, #f4d47a 50%, #d4a856 100%);
    --gradient-blue: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
    --gradient-dark: linear-gradient(180deg, #030712 0%, #0f172a 100%);
    --shadow-gold: 0 0 40px rgba(212, 168, 86, 0.3);
    --shadow-blue: 0 0 40px rgba(6, 182, 212, 0.3);
    --shadow-card: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/* ===== Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--bg-dark);
    background-image:
        linear-gradient(180deg, rgba(3, 7, 18, 0.92) 0%, rgba(3, 7, 18, 0.88) 100%),
        url('hero-bg.jpg');
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    max-width: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background: var(--accent-gold);
    color: var(--bg-dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

ul {
    list-style: none;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

.section {
    padding: 140px 0;
    position: relative;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Times New Roman', 'STSong', 'SimSun', serif;
    font-weight: 600;
    line-height: 1.2;
}

.section-title {
    text-align: center;
    margin-bottom: 80px;
}

.section-label {
    display: inline-block;
    padding: 8px 24px;
    background: var(--accent-gold-dim);
    border: 1px solid var(--border-gold);
    border-radius: 50px;
    color: var(--accent-gold);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-title h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}

.section-title p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--bg-dark);
    box-shadow: 0 10px 40px rgba(212, 168, 86, 0.4);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(212, 168, 86, 0.5);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
}

.btn-outline:hover {
    background: var(--accent-gold);
    color: var(--bg-dark);
    box-shadow: var(--shadow-gold);
}

/* ===== Header/Navigation ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(3, 7, 18, 0.8);
    backdrop-filter: blur(30px);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

header.scrolled {
    background: rgba(3, 7, 18, 0.95);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.4rem;
    font-weight: 700;
    font-family: 'Cormorant Garamond', serif;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 0 30px rgba(212, 168, 86, 0.5);
    position: relative;
}

.logo-icon::after {
    content: '';
    position: absolute;
    inset: -3px;
    background: var(--gradient-gold);
    border-radius: 50%;
    z-index: -1;
    filter: blur(15px);
    opacity: 0.5;
}

.logo-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 50px;
}

.nav-links a {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 1px;
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gradient-gold);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-gold);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    gap: 15px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 28px;
    height: 2px;
    background: var(--accent-gold);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: var(--bg-dark);
    overflow: hidden;
    padding-top: 100px;
    width: 100%;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 50% 30%, rgba(3, 7, 18, 0.5) 0%, rgba(3, 7, 18, 0.85) 90%),
        url('hero-bg.jpg') center/cover no-repeat;
    z-index: 0;
    filter: blur(8px) brightness(0.7);
    transform: scale(1.1);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(3,7,18,0.8) 0%, rgba(3,7,18,0.6) 50%, rgba(3,7,18,0.9) 100%);
    z-index: 1;
}

/* Animated background particles */
.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 2;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-gold);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 15s infinite ease-in-out;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; animation-delay: 2s; }
.particle:nth-child(3) { left: 30%; animation-delay: 4s; }
.particle:nth-child(4) { left: 40%; animation-delay: 1s; }
.particle:nth-child(5) { left: 50%; animation-delay: 3s; }
.particle:nth-child(6) { left: 60%; animation-delay: 5s; }
.particle:nth-child(7) { left: 70%; animation-delay: 2s; }
.particle:nth-child(8) { left: 80%; animation-delay: 4s; }
.particle:nth-child(9) { left: 90%; animation-delay: 1s; }

@keyframes float {
    0%, 100% { transform: translateY(100vh) scale(0); opacity: 0; }
    10% { opacity: 0.3; }
    90% { opacity: 0.3; }
    100% { transform: translateY(-100px) scale(1); opacity: 0; }
}

/* Glow rings - moved to separate elements */
.hero-rings {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.hero-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(212, 168, 86, 0.12);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse-ring 4s infinite ease-out;
}

.hero-ring:nth-child(1) {
    width: 700px;
    height: 700px;
}

.hero-ring:nth-child(2) {
    width: 500px;
    height: 500px;
    animation-delay: 1s;
    border-color: rgba(6, 182, 212, 0.1);
}

@keyframes pulse-ring {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(1.2); opacity: 0; }
}

.hero-content {
    text-align: center;
    z-index: 10;
    max-width: 1000px;
    padding: 60px 40px;
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 28px;
    background: var(--accent-gold-dim);
    border: 1px solid var(--border-gold);
    border-radius: 50px;
    color: var(--accent-gold);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
}

.hero h1 {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.1;
    letter-spacing: -2px;
}

.hero h1 .highlight {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

.hero p {
    font-size: 1.35rem;
    color: var(--text-secondary);
    margin-bottom: 50px;
    line-height: 1.9;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 80px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 50px;
    background: var(--bg-card-glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 20px;
    border-right: 1px solid var(--border-color);
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Cormorant Garamond', serif;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
}

/* ===== About Section ===== */
.about {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-card) 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.about-content h3 {
    font-size: 2.8rem;
    margin-bottom: 30px;
    color: var(--text-primary);
    line-height: 1.2;
}

.about-content p {
    color: var(--text-secondary);
    margin-bottom: 25px;
    line-height: 1.9;
    font-size: 1.05rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--bg-card-glass);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: var(--accent-gold);
    transform: translateX(5px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-gold-dim);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    border: 1px solid var(--border-gold);
}

.feature-text {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.about-image {
    position: relative;
    height: 600px;
    background: 
        linear-gradient(135deg, rgba(3, 7, 18, 0.7) 0%, rgba(3, 7, 18, 0.5) 100%),
        url('hero-bg.jpg') center/cover no-repeat;
    border-radius: 24px;
    border: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(212, 168, 86, 0.15) 0%, transparent 70%);
    z-index: 1;
}

.about-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(6, 182, 212, 0.03) 2px,
            rgba(6, 182, 212, 0.03) 4px
        );
    z-index: 2;
    pointer-events: none;
    animation: scanline 6s linear infinite;
}

.about-image-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--accent-gold) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: glow-pulse 4s infinite ease-in-out;
}

@keyframes glow-pulse {
    0%, 100% { opacity: 0.15; transform: scale(1); }
    50% { opacity: 0.25; transform: scale(1.1); }
}

/* Scanning beam effect */
.about-image .scan-beam {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--neon-blue), transparent);
    box-shadow: 0 0 20px var(--neon-blue), 0 0 40px rgba(6, 182, 212, 0.5);
    z-index: 3;
    opacity: 0.7;
    animation: scan-beam-move 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes scan-beam-move {
    0% { top: 0; opacity: 0; }
    10% { opacity: 0.7; }
    90% { opacity: 0.7; }
    100% { top: 100%; opacity: 0; }
}

/* Corner brackets */
.about-image .corner-bracket {
    position: absolute;
    width: 40px;
    height: 40px;
    border-color: var(--accent-gold);
    border-style: solid;
    z-index: 3;
    pointer-events: none;
    opacity: 0.6;
    transition: all 0.4s ease;
}

.about-image .corner-bracket.tl {
    top: 20px;
    left: 20px;
    border-width: 2px 0 0 2px;
}

.about-image .corner-bracket.tr {
    top: 20px;
    right: 20px;
    border-width: 2px 2px 0 0;
}

.about-image .corner-bracket.bl {
    bottom: 20px;
    left: 20px;
    border-width: 0 0 2px 2px;
}

.about-image .corner-bracket.br {
    bottom: 20px;
    right: 20px;
    border-width: 0 2px 2px 0;
}

.about-image:hover .corner-bracket {
    width: 60px;
    height: 60px;
    opacity: 1;
    box-shadow: 0 0 15px rgba(212, 168, 86, 0.3);
}

/* Data decode text effect */
.about-image .decode-text {
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 3;
    font-family: 'Courier New', monospace;
    font-size: 0.75rem;
    color: var(--neon-blue);
    letter-spacing: 2px;
    pointer-events: none;
    text-shadow: 0 0 10px rgba(6, 182, 212, 0.5);
}

.about-image .decode-text span {
    animation: decode-flicker 2s infinite;
}

.about-image .decode-text span:nth-child(2) {
    animation-delay: 0.3s;
}

.about-image .decode-text span:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes decode-flicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Image sharpness reveal on hover */
.about-image {
    position: relative;
    height: 600px;
    background:
        linear-gradient(135deg, rgba(3, 7, 18, 0.5) 0%, rgba(3, 7, 18, 0.3) 100%),
        url('hero-bg.jpg') center/cover no-repeat;
    border-radius: 24px;
    border: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-image:hover {
    border-color: var(--accent-gold);
    box-shadow:
        0 0 40px rgba(212, 168, 86, 0.15),
        inset 0 0 60px rgba(6, 182, 212, 0.05);
    background:
        linear-gradient(135deg, rgba(3, 7, 18, 0.3) 0%, rgba(3, 7, 18, 0.1) 100%),
        url('hero-bg.jpg') center/cover no-repeat;
}

@keyframes scanline {
    0% { background-position: 0 0; }
    100% { background-position: 0 20px; }
}

/* ===== Services Section ===== */
.services {
    background: var(--bg-dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 35px;
}

.service-card {
    background: var(--bg-card-glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 45px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    group: service;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(212, 168, 86, 0.08) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-gold);
    box-shadow: 0 30px 60px -15px rgba(212, 168, 86, 0.2);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover::after {
    opacity: 1;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-gold-dim);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin-bottom: 25px;
    border: 1px solid var(--border-gold);
    position: relative;
    z-index: 1;
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 18px;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 25px;
    line-height: 1.8;
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.service-tag {
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 30px;
    font-size: 0.8rem;
    color: var(--text-muted);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.service-tag:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

/* ===== Process Section ===== */
.process {
    background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-dark) 100%);
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 100px;
    left: 80px;
    right: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    opacity: 0.3;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
    flex: 1;
    padding: 0 15px;
}

.step-number {
    width: 100px;
    height: 100px;
    background: var(--bg-card);
    border: 2px solid var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin: 0 auto 25px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Cormorant Garamond', serif;
    position: relative;
}

.step-number::before {
    content: '';
    position: absolute;
    inset: -5px;
    border: 1px solid var(--accent-gold);
    border-radius: 50%;
    opacity: 0.3;
}

.process-step:hover .step-number {
    background: var(--gradient-gold);
    color: var(--bg-dark);
    box-shadow: 0 0 50px rgba(212, 168, 86, 0.5);
    transform: scale(1.1);
}

.step-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
    font-family: 'Cormorant Garamond', serif;
}

.step-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===== Legal Section ===== */
.legal {
    background: var(--bg-dark);
}

.legal-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.legal-card {
    background: var(--bg-card-glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    display: flex;
    gap: 25px;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.legal-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -10px rgba(212, 168, 86, 0.15);
}

.legal-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-gold-dim);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
    border: 1px solid var(--border-gold);
}

.legal-content h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--text-primary);
    font-family: 'Cormorant Garamond', serif;
}

.legal-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===== FAQ Section ===== */
.faq {
    background: var(--bg-card);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card-glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--border-gold);
}

.faq-item.active {
    border-color: var(--accent-gold);
    box-shadow: 0 10px 40px -10px rgba(212, 168, 86, 0.2);
}

.faq-question {
    padding: 30px 35px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-primary);
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: 0.3px;
}

.faq-icon {
    width: 30px;
    height: 30px;
    background: var(--accent-gold-dim);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    background: var(--accent-gold);
    color: var(--bg-dark);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 400px;
}

.faq-answer p {
    padding: 0 35px 30px;
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1rem;
}

/* ===== Contact Section ===== */
.contact {
    background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-dark) 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.contact-info h3 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--text-primary);
    font-family: 'Cormorant Garamond', serif;
}

.contact-info > p {
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.8;
    font-size: 1.05rem;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: var(--bg-card-glass);
    backdrop-filter: blur(10px);
    border-radius: 14px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-color: var(--accent-gold);
    transform: translateX(10px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-gold-dim);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border: 1px solid var(--border-gold);
    flex-shrink: 0;
}

.contact-text span {
    display: block;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.contact-text strong {
    color: var(--text-primary);
    font-size: 1.15rem;
    font-weight: 600;
}

.contact-form {
    background: var(--bg-card-glass);
    backdrop-filter: blur(20px);
    padding: 50px;
    border-radius: 24px;
    border: 1px solid var(--border-color);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 20px rgba(212, 168, 86, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    background-color: var(--bg-card);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23d4a856' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-group select option {
    background-color: var(--bg-card);
    color: var(--text-primary);
    padding: 8px;
}

.form-submit {
    width: 100%;
    padding: 18px;
    background: var(--gradient-gold);
    border: none;
    border-radius: 10px;
    color: var(--bg-dark);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(212, 168, 86, 0.4);
}

/* ===== Footer ===== */
footer {
    background: var(--bg-dark);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-brand .logo {
    margin-bottom: 15px;
}

.footer-brand p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.footer-brand .tagline {
    color: var(--accent-gold);
    font-style: italic;
    font-size: 0.95rem;
}

.footer-links h4 {
    color: var(--text-primary);
    margin-bottom: 18px;
    font-size: 1rem;
    font-weight: 600;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 25px;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.8rem;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: var(--text-muted);
}

.footer-legal a:hover {
    color: var(--accent-gold);
}

/* ===== Responsive Design ===== */
@media (max-width: 1200px) {
    .container {
        max-width: 1000px;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .stat-item:nth-child(2) {
        border-right: none;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 992px) {
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info h3 {
        font-size: 1.8rem;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .about-image {
        height: 400px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        padding: 30px 25px;
        min-width: 0;
    }

    .service-card h3 {
        font-size: 1.4rem;
        word-break: break-word;
    }

    .service-tags {
        gap: 8px;
    }

    .service-tag {
        font-size: 0.75rem;
        padding: 6px 14px;
    }

    .process-timeline {
        flex-direction: column;
        gap: 30px;
        padding: 30px 0;
    }

    .process-timeline::before {
        display: none;
    }

    .process-step {
        display: flex;
        align-items: center;
        gap: 20px;
        text-align: left;
        padding: 0 0 0 68px;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
        margin: 0;
        flex-shrink: 0;
    }

    .step-content {
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .step-title {
        margin-bottom: 0;
        font-size: 1.2rem;
    }

    .step-desc {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    nav {
        padding: 15px 20px;
    }

    .nav-links {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .logo {
        font-size: 1.2rem;
    }

    .logo-icon {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
    }

    /* Prevent image overflow */
    img {
        max-width: 100%;
        height: auto;
    }

    .hero h1 {
        font-size: 2.2rem;
        white-space: nowrap;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        padding: 30px 20px;
        gap: 20px;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding-bottom: 20px;
        min-width: 0;
    }

    .stat-item:last-child {
        border-bottom: none;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .section {
        padding: 80px 0;
    }

    .section-title h2 {
        font-size: 2rem;
        word-break: break-word;
    }

    .section-title p {
        font-size: 1rem;
        padding: 0 10px;
    }

    .about-content h3 {
        font-size: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-links {
        background: var(--bg-card-glass);
        backdrop-filter: blur(10px);
        border: 1px solid var(--border-color);
        border-radius: 16px;
        padding: 20px;
    }

    .footer-links h4 {
        margin-bottom: 12px;
        font-size: 0.95rem;
    }

    .footer-links ul {
        gap: 6px;
    }

    .footer-brand p,
    .footer-links a {
        font-size: 0.8rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 30px;
    }
}

/* ===== Animations ===== */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ===== Floating Action Buttons ===== */
.fab-container {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    display: flex;
    gap: 20px;
    align-items: flex-end;
    transition: opacity 0.3s ease;
}

.fab-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    min-width: 180px;
    justify-content: center;
}

.fab-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.fab-btn:hover::before {
    left: 100%;
}

.fab-btn-primary {
    background: var(--gradient-gold);
    color: var(--bg-dark);
    box-shadow: 0 10px 40px rgba(212, 168, 86, 0.5);
}

.fab-btn-primary:hover {
    transform: translateY(-6px) scale(1.08);
    box-shadow: 0 20px 60px rgba(212, 168, 86, 0.6);
}

.fab-btn-secondary {
    background: #07c160;
    color: #fff;
    box-shadow: 0 10px 40px rgba(7, 193, 96, 0.4);
}

.fab-btn-secondary:hover {
    transform: translateY(-6px) scale(1.08);
    box-shadow: 0 20px 60px rgba(7, 193, 96, 0.5);
}

.fab-icon {
    font-size: 1.5rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.fab-icon svg {
    width: 1em;
    height: 1em;
}

.wechat-icon-img {
    width: 26px;
    height: 26px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.fab-text {
    white-space: nowrap;
    letter-spacing: 0.5px;
}

.fab-pulse {
    position: absolute;
    inset: -3px;
    border-radius: 50px;
    animation: fab-pulse 2s infinite;
    z-index: -1;
}

.fab-btn-primary .fab-pulse {
    background: var(--gradient-gold);
}

.fab-btn-secondary .fab-pulse {
    background: #07c160;
}

@keyframes fab-pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    70% {
        transform: scale(1.15);
        opacity: 0;
    }
    100% {
        transform: scale(1.15);
        opacity: 0;
    }
}

/* WeChat QR Modal */
.wechat-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.wechat-modal.active {
    display: flex;
    opacity: 1;
}

.wechat-modal-content {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    max-width: 350px;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.wechat-modal.active .wechat-modal-content {
    transform: scale(1);
}

.wechat-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.wechat-modal-close:hover {
    background: var(--accent-gold);
    color: var(--bg-dark);
    border-color: var(--accent-gold);
}

.wechat-qr-placeholder {
    width: 220px;
    height: 220px;
    background: #fff;
    border: 3px solid var(--border-gold);
    border-radius: 16px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.wechat-modal h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-primary);
    font-family: 'Cormorant Garamond', serif;
}

.wechat-modal p {
    color: var(--text-secondary);
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.wechat-id {
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 1.1rem;
    font-family: monospace;
}

/* Phone Modal */
.phone-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.phone-modal.active {
    display: flex;
    opacity: 1;
}

.phone-modal-content {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    max-width: 320px;
    width: 90%;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.phone-modal.active .phone-modal-content {
    transform: scale(1);
}

.phone-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.phone-modal-close:hover {
    background: var(--accent-gold);
    color: var(--bg-dark);
    border-color: var(--accent-gold);
}

.phone-icon {
    width: 70px;
    height: 70px;
    background: var(--accent-gold-dim);
    border: 1px solid var(--border-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
}

.phone-modal h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-primary);
    font-family: 'Cormorant Garamond', serif;
}

.phone-number {
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 1.5rem;
    font-family: monospace;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.phone-call-btn {
    display: inline-block;
    padding: 14px 40px;
    background: var(--gradient-gold);
    border: none;
    border-radius: 10px;
    color: var(--bg-dark);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.phone-call-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 168, 86, 0.4);
}

.wechat-copy-btn {
    margin-top: 20px;
    padding: 12px 30px;
    background: var(--gradient-gold);
    border: none;
    border-radius: 8px;
    color: var(--bg-dark);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wechat-copy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 168, 86, 0.4);
}

/* Mobile responsive for FAB */
@media (max-width: 768px) {
    .fab-container {
        bottom: 20px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 12px;
        flex-wrap: nowrap;
        padding: 0 16px;
        width: auto;
        max-width: 100vw;
        box-sizing: border-box;
    }

    .fab-btn {
        padding: 12px 20px;
        font-size: 0.85rem;
        min-width: auto;
        flex: 1 1 auto;
        display: inline-flex;
        max-width: 50%;
    }

    .fab-icon {
        font-size: 1.2rem;
    }

    .fab-text {
        font-size: 0.8rem;
        white-space: nowrap;
    }

    .phone-modal-content {
        padding: 30px 20px;
        margin: 20px;
        max-width: calc(100vw - 40px);
    }

    .phone-number {
        font-size: 1.3rem;
    }

    .phone-call-btn {
        padding: 12px 30px;
        font-size: 0.95rem;
    }

    .wechat-modal-content {
        padding: 30px 20px;
        margin: 20px;
        max-width: calc(100vw - 40px);
    }

    .wechat-qr-placeholder {
        width: 200px;
        height: 200px;
    }
}

/* Very small screens - stack buttons */
@media (max-width: 480px) {
    .fab-container {
        flex-direction: row;
        align-items: center;
        gap: 10px;
        bottom: 15px;
        padding: 0 12px;
        left: 0;
        right: 0;
        transform: none;
        width: 100%;
    }

    .fab-btn {
        width: 100%;
        max-width: none;
        min-width: auto;
        justify-content: center;
        padding: 12px 16px;
        font-size: 0.8rem;
        flex: 1;
    }

    .fab-icon {
        font-size: 1.1rem;
    }

    .fab-text {
        font-size: 0.75rem;
    }

    .hero h1 {
        font-size: 1.7rem;
    }
}
