/* ===== 0024 TEAL FRESH - Custom Styles ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --teal-500: #14b8a6;
    --teal-600: #0d9488;
    --teal-700: #0f766e;
    --emerald-400: #34d399;
    --teal-glow: 0 4px 20px rgba(20, 184, 166, 0.3);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', 'PingFang SC', 'Microsoft YaHei', sans-serif; overflow-x: hidden; }

/* Navbar */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(255,255,255,0.95); backdrop-filter: blur(10px);
    transition: box-shadow 0.3s ease;
}
.navbar.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }

/* Hero decorative leaf */
.hero-leaf {
    position: absolute; opacity: 0.15; pointer-events: none;
}

/* Feature cards hover */
.feature-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 1.5rem;
}
.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(20, 184, 166, 0.2);
}

/* Icon circle */
.icon-circle {
    width: 64px; height: 64px;
    background: linear-gradient(135deg, #ccfbf1, #99f6e4);
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
}

/* Stats dot separator */
.stat-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--teal-500); display: inline-block;
}

/* Testimonial card quote */
.testimonial-quote {
    font-size: 3rem; line-height: 1;
    color: var(--teal-500); opacity: 0.3;
    font-family: Georgia, serif;
}

/* FAQ number circle */
.faq-number {
    width: 36px; height: 36px; min-width: 36px;
    background: linear-gradient(135deg, var(--teal-500), var(--teal-600));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white; font-weight: 700; font-size: 0.875rem;
}

/* FAQ rotate icon */
.faq-rotate {
    transition: transform 0.3s ease;
}
details[open] .faq-rotate { transform: rotate(180deg); }

/* Wave divider */
.wave-divider {
    position: relative;
    height: 60px;
    overflow: hidden;
}
.wave-divider::before {
    content: '';
    position: absolute; top: -1px; left: 0; width: 100%; height: 100%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60'%3E%3Cpath fill='%23ffffff' d='M0,30 C360,60 720,0 1080,30 C1260,45 1380,30 1440,30 L1440,60 L0,60 Z'/%3E%3C/svg%3E") no-repeat;
    background-size: cover;
}

/* Page hero banner */
.page-hero {
    padding-top: 120px; padding-bottom: 80px;
    background: linear-gradient(180deg, #f0fdfa 0%, #ffffff 100%);
    text-align: center;
}

/* Contact form */
.form-input {
    width: 100%; padding: 0.875rem 1rem;
    border: 2px solid #e2e8f0; border-radius: 0.75rem;
    font-size: 1rem; transition: border-color 0.3s;
    outline: none;
}
.form-input:focus { border-color: var(--teal-500); }
.form-textarea {
    width: 100%; padding: 0.875rem 1rem;
    border: 2px solid #e2e8f0; border-radius: 0.75rem;
    font-size: 1rem; min-height: 150px; resize: vertical;
    transition: border-color 0.3s; outline: none;
}
.form-textarea:focus { border-color: var(--teal-500); }

/* Fade in animation */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-in { animation: fadeInUp 0.6s ease-out forwards; opacity: 0; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
