/* Aura Pavilion 专属样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #1a3a5c;
    --secondary-blue: #2c5f8d;
    --gold: #D4AF37;
    --light-gold: #F4D03F;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --gray: #e9ecef;
    --text-dark: #333;
    --text-light: #666;
    --success: #28a745;
    --error: #e74c3c;
}

body {
    font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

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

/* 导航栏 */
.navbar {
    background: var(--primary-blue);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 50px;
}

.nav-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.8;
}

.btn-inquiry-small {
    background: var(--gold);
    color: var(--primary-blue);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
}

/* Hero区域 */
.hero {
    position: relative;
    min-height: 80vh;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px;
    padding: 40px 20px;
}

.hero-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.2);
    color: var(--gold);
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 14px;
    margin-bottom: 20px;
    border: 2px solid var(--gold);
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 10px;
    opacity: 0.9;
}

.hero-tagline {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.8;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-primary, .btn-secondary {
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--light-gold) 100%);
    color: var(--primary-blue);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background: rgba(255,255,255,0.1);
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.2);
}

/* 通用样式 */
section {
    padding: 80px 20px;
}

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

.section-header h2 {
    font-size: 42px;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    font-style: italic;
}

.divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--light-gold) 100%);
    margin: 20px auto;
    border-radius: 2px;
}

.lead {
    font-size: 20px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
}

/* 概述区域 */
.overview {
    background: white;
}

.overview-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
}

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

.feature-box {
    padding: 25px;
    background: var(--light-gray);
    border-radius: 15px;
    transition: all 0.3s;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 36px;
    margin-bottom: 10px;
}

.feature-box h4 {
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.feature-box p {
    color: var(--text-light);
    font-size: 14px;
}

.image-placeholder {
    height: 500px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.placeholder-content {
    text-align: center;
}

.placeholder-icon {
    font-size: 80px;
    display: block;
    margin-bottom: 20px;
}

/* 空间规划 */
.space-planning {
    background: var(--light-gray);
}

.space-zones {
    display: grid;
    gap: 30px;
    margin-bottom: 40px;
}

.zone-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.zone-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: white;
    padding: 30px;
    position: relative;
}

.zone-percentage {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 48px;
    font-weight: 700;
    opacity: 0.3;
}

.zone-header h3 {
    font-size: 28px;
    margin-bottom: 5px;
}

.zone-subtitle {
    font-size: 16px;
    opacity: 0.9;
    font-style: italic;
}

.zone-content {
    padding: 30px;
}

.zone-desc {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.zone-features {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.zone-features li {
    color: var(--text-dark);
    font-size: 15px;
}

.zone-brands {
    background: var(--light-gray);
    padding: 15px;
    border-radius: 10px;
}

.zone-brands strong {
    color: var(--primary-blue);
}

.zone-brands span {
    color: var(--text-light);
    font-size: 14px;
}

.space-note {
    background: #fff9e6;
    border-left: 4px solid var(--gold);
    padding: 25px;
    border-radius: 10px;
}

.space-note h4 {
    color: var(--primary-blue);
    margin-bottom: 15px;
}

/* 合作优势 */
.advantages {
    background: white;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.advantage-card {
    background: var(--light-gray);
    padding: 35px;
    border-radius: 20px;
    position: relative;
    transition: all 0.3s;
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.advantage-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 64px;
    font-weight: 700;
    color: rgba(26, 58, 92, 0.05);
}

.advantage-card h3 {
    color: var(--primary-blue);
    font-size: 22px;
    margin-bottom: 15px;
}

.advantage-card > p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.advantage-card ul {
    list-style: none;
}

.advantage-card li {
    padding: 8px 0;
    color: var(--text-dark);
    position: relative;
    padding-left: 20px;
}

.advantage-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

/* 目标品牌 */
.target-brands {
    background: var(--light-gray);
}

.target-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.category-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.category-card h3 {
    color: var(--primary-blue);
    font-size: 22px;
    margin-bottom: 15px;
}

.category-card > p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.category-card ul {
    list-style: none;
}

.category-card li {
    padding: 8px 0;
    color: var(--text-dark);
    font-size: 15px;
    position: relative;
    padding-left: 20px;
}

.category-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

.brand-criteria {
    background: white;
    padding: 40px;
    border-radius: 20px;
}

.brand-criteria h3 {
    color: var(--primary-blue);
    font-size: 24px;
    margin-bottom: 30px;
    text-align: center;
}

.criteria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.criteria-item {
    text-align: center;
    padding: 20px;
    background: var(--light-gray);
    border-radius: 15px;
}

.criteria-item strong {
    display: block;
    color: var(--primary-blue);
    margin-bottom: 10px;
    font-size: 16px;
}

.criteria-item p {
    color: var(--text-light);
    font-size: 14px;
}

/* 合作方案 */
.cooperation-plans {
    background: white;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.plan-card {
    background: white;
    border: 2px solid var(--gray);
    border-radius: 20px;
    padding: 35px;
    position: relative;
    transition: all 0.3s;
}

.plan-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary-blue);
    box-shadow: 0 15px 40px rgba(26, 58, 92, 0.15);
}

.plan-card.featured {
    border-color: var(--gold);
    background: linear-gradient(135deg, #fffef7 0%, #fffefa 100%);
}

.plan-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--secondary-blue);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
}

.plan-badge.hot {
    background: linear-gradient(135deg, var(--gold) 0%, var(--light-gold) 100%);
    color: var(--primary-blue);
}

.plan-card h3 {
    color: var(--primary-blue);
    font-size: 24px;
    margin-bottom: 10px;
}

.plan-duration {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 20px;
}

.plan-price {
    margin-bottom: 20px;
}

.price-label {
    font-size: 14px;
    color: var(--text-light);
}

.price-value {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-top: 5px;
}

.plan-desc {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.8;
}

.plan-features {
    list-style: none;
    margin-bottom: 25px;
}

.plan-features li {
    padding: 10px 0;
    color: var(--text-dark);
    font-size: 15px;
}

.plan-model {
    background: var(--light-gray);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 25px;
}

.plan-model strong {
    color: var(--primary-blue);
    display: block;
    margin-bottom: 5px;
}

.plan-model p {
    color: var(--text-light);
    font-size: 14px;
}

.btn-plan {
    display: block;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-plan:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(26, 58, 92, 0.3);
}

.plans-note {
    background: #f0f7ff;
    border-left: 4px solid var(--secondary-blue);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 40px;
}

.plans-note h4 {
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-size: 22px;
}

.plans-note ul {
    list-style: none;
}

.plans-note li {
    padding: 10px 0;
    color: var(--text-light);
    line-height: 1.8;
}

.plans-note li ul {
    margin-top: 10px;
}

.plans-note li ul li {
    padding: 5px 0;
    font-size: 14px;
}

.model-note {
    margin-top: 10px;
    font-size: 13px;
    color: var(--text-light);
}

/* 筛选流程 */
.selection-process {
    background: #fff9e6;
    border: 2px solid var(--gold);
    padding: 40px;
    border-radius: 15px;
}

.selection-process h4 {
    color: var(--primary-blue);
    font-size: 22px;
    margin-bottom: 30px;
    text-align: center;
}

.process-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.process-step {
    text-align: center;
    flex-shrink: 0;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 10px;
}

.process-step h5 {
    color: var(--primary-blue);
    font-size: 16px;
    margin-bottom: 5px;
}

.process-step p {
    color: var(--text-light);
    font-size: 13px;
}

.process-arrow {
    font-size: 24px;
    color: var(--gold);
    font-weight: 700;
}

.process-note {
    text-align: center;
    color: var(--text-light);
    line-height: 1.8;
    padding: 20px;
    background: white;
    border-radius: 10px;
    border-left: 4px solid var(--gold);
}

/* 表单样式 */
.application-form {
    background: var(--light-gray);
}

.aura-form {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.form-section {
    margin-bottom: 50px;
}

.section-title {
    font-size: 24px;
    color: var(--primary-blue);
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--gold);
}

.section-desc {
    color: var(--text-light);
    max-width: 800px;
    margin: 10px auto 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 500;
}

.required {
    color: var(--error);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--gray);
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-blue);
    box-shadow: 0 0 0 4px rgba(44, 95, 141, 0.1);
}

.char-counter {
    text-align: right;
    font-size: 13px;
    color: var(--text-light);
    margin-top: 5px;
}

.char-counter .current {
    font-weight: 600;
    color: var(--secondary-blue);
}

.radio-group, .checkbox-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 10px;
}

.radio-item, .checkbox-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    background: var(--light-gray);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.radio-item:hover, .checkbox-item:hover {
    background: #e6f2ff;
    border-color: var(--secondary-blue);
}

.radio-item input, .checkbox-item input {
    margin-right: 10px;
    width: auto;
}

.privacy-notice {
    background: #fff9e6;
    border: 2px solid var(--gold);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.privacy-notice h4 {
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.privacy-notice ul {
    list-style: none;
}

.privacy-notice li {
    padding: 8px 0;
    color: var(--text-light);
    position: relative;
    padding-left: 20px;
}

.privacy-notice li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

.submit-btn {
    width: 100%;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(26, 58, 92, 0.4);
}

.btn-icon {
    font-size: 24px;
}

.success-message {
    display: none;
    background: #d4edda;
    border: 3px solid var(--success);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    margin-top: 30px;
}

.success-message.show {
    display: block;
}

.success-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.success-message h3 {
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.success-message p {
    color: var(--text-light);
    margin-bottom: 10px;
}

.success-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 25px;
}

/* 联系信息 */
.contact-info {
    background: white;
    padding: 60px 20px;
}

.contact-info h2 {
    text-align: center;
    color: var(--primary-blue);
    margin-bottom: 40px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-item {
    text-align: center;
    padding: 30px;
    background: var(--light-gray);
    border-radius: 15px;
}

.contact-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.contact-item h4 {
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.contact-item a {
    color: var(--secondary-blue);
    text-decoration: none;
}

/* 页脚 */
.footer {
    background: #212241;
    color: white;
    padding: 40px 20px 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.footer-logo {
    height: 50px;
    margin-bottom: 15px;
}

.footer-tagline {
    font-style: italic;
    opacity: 0.9;
}

.footer-col h4 {
    margin-bottom: 15px;
}

.footer-col p, .footer-col a {
    display: block;
    opacity: 0.9;
    margin: 5px 0;
    color: white;
    text-decoration: none;
}

.footer-col a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.8;
}

/* 响应式 */
@media (max-width: 1024px) {
    .overview-content {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .feature-grid,
    .zone-features {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .aura-form {
        padding: 30px 20px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .success-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 32px;
    }
    
    .hero-title {
        font-size: 28px;
    }
}
