*{margin:0;padding:0;box-sizing:border-box}body{font-family:'Inter','PingFang SC','Hiragino Sans GB','Microsoft YaHei','微软雅黑','Helvetica Neue',Helvetica,Arial,sans-serif;line-height:1.6;color:#333;background-color:#fafaf9}.container{max-width:1200px;margin:0 auto;padding:0 1rem}

h1, h2, h3 {
    font-family: 'Playfair Display', 'STSong', 'SimSun', '宋体', 'Times New Roman', serif;
}

.hero-title,
.contact-header h2,
.contact-form h3,
.footer-section h3 {
    font-family: 'Playfair Display', 'STKaiti', 'KaiTi', '楷体', 'STSong', 'SimSun', '宋体', serif;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border: none;
    border-radius: 9999px;
    font-size: 1.125rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
}

.btn-primary {
    background-color: #047857;
    color: white;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background-color: #065f46;
}

.btn-secondary {
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
}

.btn-secondary:hover {
    background-color: white;
    color: #047857;
}

.btn-submit {
    width: 100%;
    background-color: #047857;
    color: white;
    padding: 0.75rem;
    font-size: 1.125rem;
    border-radius: 0.5rem;
}

.btn-submit:hover {
    background-color: #065f46;
}

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.2);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    padding: 0 1rem;
    max-width: 64rem;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 400;
    margin-bottom: 2rem;
    line-height: 1.1;
    letter-spacing: 0.02em;
}

.hero-subtitle {
    color: #fbbf24;
}

.hero-description {
    font-size: clamp(1.25rem, 4vw, 1.5rem);
    color: #e7e5e4;
    font-weight: 300;
    margin-bottom: 3rem;
    line-height: 1.5;
    font-family: 'Inter', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.emotional-section {
    padding: 5rem 0;
}

.emotional-grid {
    display: grid;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .emotional-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.emotional-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.emotional-text {
    font-size: clamp(1.5rem, 4vw, 1.875rem);
    color: #57534e;
    font-weight: 300;
    line-height: 1.6;
    font-family: 'Inter', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
}

.divider {
    width: 6rem;
    height: 0.25rem;
    background-color: #fbbf24;
}

.emotional-description {
    font-size: 1.125rem;
    color: #78716c;
    line-height: 1.6;
    font-family: 'Inter', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
}

.rounded-image {
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    width: 100%;
    height: auto;
}

.features-section {
    padding: 5rem 0;
    background-color: #f5f5f4;
}

.features-grid {
    display: grid;
    gap: 3rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
}

.feature-image {
    margin-bottom: 2rem;
    overflow: hidden;
    border-radius: 1.25rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.feature-img {
    width: 100%;
    height: 16rem;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
    display: block;
}

.feature-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.feature-icon {
    width: 2rem;
    height: 2rem;
    color: #047857;
    margin-right: 0.75rem;
}

.feature-header h3 {
    font-size: 1.5rem;
    color: #1c1917;
    font-weight: 500;
}

.feature-card p {
    color: #78716c;
    line-height: 1.6;
    font-family: 'Inter', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
}

.contact-section {
    padding: 5rem 0 2rem;
}

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-header h2 {
    font-size: clamp(1.875rem, 4vw, 2.25rem);
    color: #1c1917;
    margin-bottom: 2rem;
    font-weight: 500;
}

.contact-header p {
    font-size: 1.25rem;
    color: #78716c;
    line-height: 1.6;
    font-family: 'Inter', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
}

.contact-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.contact-card {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: box-shadow 0.3s ease;
}

.contact-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    color: #047857;
    margin: 0 auto 1rem;
}

.line-icon {
    color: #22c55e;
}

.whatsapp-icon {
    color: #16a34a;
}

.contact-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1c1917;
    margin-bottom: 0.5rem;
    font-family: 'Inter', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
}

.contact-card p {
    color: #78716c;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    font-family: 'Inter', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
}

.phone-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #047857;
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
    font-family: 'Inter', Arial, sans-serif;
}

.phone-number:hover {
    color: #065f46;
}

.qr-code {
    width: 6rem;
    height: 6rem;
    margin: 0 auto 0.75rem;
    background-color: #f5f5f4;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qr-code img {
    border-radius: 0.5rem;
    width: 100%;
    height: 100%;
}

.contact-card small {
    font-size: 0.75rem;
    color: #a8a29e;
    font-family: 'Inter', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
}

.form-section {
    padding: 3rem 0;
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    max-width: 42rem;
    margin: 0 auto;
    text-align: center;
}

.contact-form h3 {
    font-size: 1.5rem;
    color: #1c1917;
    margin-bottom: 2rem;
    font-weight: 500;
}

.form-row {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-group label {
    display: block;
    color: #57534e;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-family: 'Inter', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d6d3d1;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: 'Inter', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #047857;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #a8a29e;
}

.footer {
    background-color: #292524;
    color: white;
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-section h3 {
    font-size: 1.25rem;
    color: #fbbf24;
    margin-bottom: 1rem;
    font-weight: 500;
}

.footer-contact,
.footer-hours,
.footer-address {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-item,
.footer-address {
    display: flex;
    align-items: center;
    font-family: 'Inter', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
}

.footer-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #34d399;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.footer-hours p {
    color: #d6d3d1;
    font-family: 'Inter', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
}

.footer-bottom {
    border-top: 1px solid #57534e;
    padding-top: 2rem;
    text-align: center;
    color: #a8a29e;
    font-family: 'Inter', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .hero-image {
        object-fit: cover;
        object-position: center center;
    }
}

html {
    scroll-behavior: smooth;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
    h1, h2, h3 {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}

.hero-title,
.contact-form h3,
.feature-header h3,
.contact-header h2 {
    text-rendering: optimizeLegibility;
}

.notification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.notification-overlay.show {
    opacity: 1;
    visibility: visible;
}

.notification-modal {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.notification-overlay.show .notification-modal {
    transform: translateY(0);
}

.notification-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1rem;
    background-color: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-icon svg {
    width: 2rem;
    height: 2rem;
    color: white;
}

.notification-title {
    font-size: 1.5rem;
    color: #1c1917;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-family: 'Playfair Display', 'STKaiti', 'KaiTi', '楷体', serif;
}

.notification-message {
    color: #78716c;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-family: 'Inter', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
}

.notification-btn {
    background-color: #047857;
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Inter', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
}

.notification-btn:hover {
    background-color: #065f46;
}
