/* 首页专用样式 */

/* 统计数据区域 */
.stats-section {
    background-color: white;
    padding: 80px 0;
}

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

.stats-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #4472C4;
    margin-bottom: 60px;
    line-height: 1.3;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.stats-card {
    background-color: #4472C4;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    color: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stats-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(68, 114, 196, 0.3);
}

.stats-icon {
    height: 80px;
    width: auto;
    margin: 0 auto 24px auto;
    filter: brightness(0) invert(1);
}

.stats-number {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.2;
}

.stats-description {
    font-size: 18px;
    font-weight: 400;
    opacity: 0.9;
    line-height: 1.4;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .stats-section {
        padding: 60px 0;
    }
    
    .stats-container {
        padding: 0 15px;
    }
    
    .stats-title {
        font-size: 28px;
        margin-bottom: 40px;
        padding: 0 10px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stats-card {
        padding: 35px 25px;
    }
    
    .stats-icon {
        height: 65px;
        width: auto;
        margin-bottom: 20px;
    }
    
    .stats-number {
        font-size: 28px;
    }
    
    .stats-description {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .stats-section {
        padding: 50px 0;
    }
    
    .stats-container {
        padding: 0 10px;
    }
    
    .stats-title {
        font-size: 24px;
        margin-bottom: 35px;
    }
    
    .stats-card {
        padding: 30px 20px;
    }
    
    .stats-icon {
        height: 55px;
        width: auto;
        margin-bottom: 18px;
    }
    
    .stats-number {
        font-size: 24px;
    }
    
    .stats-description {
        font-size: 15px;
    }
}

/* Our Story 区域 */
.our-story-section {
    background-color: white;
    padding: 80px 0;
}

.our-story-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.our-story-content {
    flex: 1.5;
}

.our-story-title {
    font-size: 48px;
    font-weight: 700;
    color: #4472C4;
    margin-bottom: 30px;
    line-height: 1.2;
}

.our-story-text {
    font-size: 18px;
    line-height: 1.6;
    color: #4472C4;
    margin-bottom: 20px;
}

.our-story-images {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.our-story-images img {
    width: 300px;
    height: auto;
    display: block;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .our-story-section {
        padding: 60px 0;
    }
    
    .our-story-container {
        flex-direction: column;
        gap: 40px;
        padding: 0 15px;
    }
    
    .our-story-title {
        font-size: 36px;
        text-align: center;
        margin-bottom: 25px;
    }
    
    .our-story-text {
        font-size: 16px;
        text-align: center;
        margin-bottom: 18px;
    }
}

@media (max-width: 480px) {
    .our-story-section {
        padding: 50px 0;
    }
    
    .our-story-container {
        gap: 30px;
        padding: 0 10px;
    }
    
    .our-story-title {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .our-story-text {
        font-size: 15px;
        margin-bottom: 15px;
    }
}

/* Call to Action 区域 */
.cta-section {
    background-color: white;
    padding: 80px 0;
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
}

.cta-card {
    background-color: #4472C4;
    border-radius: 50px;
    padding: 10px 20px;
    text-align: center;
    color: white;
    max-width: 1200px;
    width: 100%;
}

.cta-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.cta-description {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-button {
    background-color: white;
    color: #4472C4;
    border: none;
    border-radius: 25px;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-container {
        padding: 0 15px;
    }
    
    .cta-card {
        border-radius: 30px;
        padding: 40px 30px;
    }
    
    .cta-title {
        font-size: 28px;
        margin-bottom: 18px;
    }
    
    .cta-description {
        font-size: 16px;
        margin-bottom: 25px;
    }
    
    .cta-button {
        padding: 12px 30px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: 50px 0;
    }
    
    .cta-container {
        padding: 0 10px;
    }
    
    .cta-card {
        border-radius: 25px;
        padding: 35px 20px;
    }
    
    .cta-title {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .cta-description {
        font-size: 15px;
        margin-bottom: 20px;
    }
    
    .cta-button {
        padding: 10px 25px;
        font-size: 14px;
    }
}

/* 教育卡片区域 */
.education-section {
    background-color: white;
    padding: 80px 20px;
}

.education-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.education-title {
    font-size: 32px;
    color: #4472C4;
    margin-bottom: 60px;
    line-height: 1.4;
    font-weight: 600;
}

.education-cards {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    flex-wrap: wrap;
}

.education-card {
    width: 225px;
    position: relative;
    transition: all 0.4s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 300px;
}

.education-card:hover {
    transform: scale(1.1) translateY(-10px);
}

.card-image-wrapper {
    position: relative;
    width: 225px;
    height: 300px;
    overflow: hidden;
    border-radius: 15px;
    transition: all 0.4s ease;
}

.education-card:hover .card-image-wrapper {
    box-shadow: 0 20px 40px rgba(68, 114, 196, 0.3);
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    transition: all 0.4s ease;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(68, 114, 196, 0.4);
    border-radius: 15px;
    transition: opacity 0.4s ease;
    opacity: 1;
}

.education-card:hover .card-overlay {
    opacity: 0;
}

.card-content {
    margin-top: 15px;
    opacity: 0;
    transition: all 0.4s ease;
    transform: translateY(10px);
    text-align: center;
    position: absolute;
    top: 315px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 280px;
}

.education-card:hover .card-content {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.card-title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin: 0 0 8px 0;
    text-align: center;
}

.card-description {
    font-size: 14px;
    line-height: 1.5;
    color: #666;
    margin: 0;
    text-align: center;
    max-width: 250px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .education-section {
        padding: 60px 15px;
    }
    
    .education-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .education-cards {
        gap: 30px;
    }
    
    .education-card {
        width: 195px;
        min-height: 260px;
    }
    
    .card-image-wrapper {
        width: 195px;
        height: 260px;
    }
    
    .education-card:hover {
        transform: scale(1.08) translateY(-8px);
    }
    
    .card-content {
        position: absolute;
        top: 15px;
        left: 50%;
        transform: translateX(-50%);
        width: 180px;
        opacity: 1;
        z-index: 10;
    }
    
    .card-title {
        font-size: 18px;
        color: white;
        text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
    }
    
    .card-description {
        font-size: 13px;
        max-width: 170px;
        color: white;
        text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
    }
}

@media (max-width: 480px) {
    .education-section {
        padding: 50px 10px;
    }
    
    .education-title {
        font-size: 24px;
        margin-bottom: 35px;
    }
    
    .education-cards {
        gap: 25px;
    }
    
    .education-card {
        width: 180px;
        min-height: 240px;
    }
    
    .card-image-wrapper {
        width: 180px;
        height: 240px;
    }
    
    .education-card:hover {
        transform: scale(1.06) translateY(-6px);
    }
    
    .card-content {
        position: absolute;
        top: 12px;
        left: 50%;
        transform: translateX(-50%);
        width: 170px;
        opacity: 1;
        z-index: 10;
    }
    
    .card-title {
        font-size: 16px;
        margin-bottom: 6px;
        color: white;
        text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
    }
    
    .card-description {
        font-size: 12px;
        max-width: 160px;
        color: white;
        text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
    }
}

@media (max-width: 360px) {
    .education-cards {
        gap: 20px;
    }
    
    .education-card {
        width: 165px;
        min-height: 220px;
    }
    
    .card-image-wrapper {
        width: 165px;
        height: 220px;
    }
    
    .education-card:hover {
        transform: scale(1.05) translateY(-5px);
    }
    
    .card-content {
        position: absolute;
        top: 12px;
        left: 50%;
        transform: translateX(-50%);
        width: 155px;
        opacity: 1;
        z-index: 10;
    }
    
    .card-title {
        font-size: 15px;
        margin-bottom: 5px;
        color: white;
        text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
    }
    
    .card-description {
        font-size: 11px;
        max-width: 145px;
        color: white;
        text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
    }
}

/* 分割图片区域 */
.divider-section {
    width: 100%;
    padding: 0;
    margin: 0;
    background-color: white;
}

.divider-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* UK Property Networking Meetings 区域 */
.meetings-section {
    background-color: white;
    padding: 80px 0;
}

.meetings-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 60px;
}

/* 左侧图片 */
.meetings-image-wrapper {
    flex: 1;
    position: relative;
    width: 560px;
    height: 760px;
    overflow: hidden;
    border-radius: 15px;
}

.meetings-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    transition: opacity 0.4s ease;
    position: absolute;
    top: 0;
    left: 0;
}

.hover-image {
    opacity: 0;
}

.meetings-image-wrapper:hover .default-image {
    opacity: 0;
}

.meetings-image-wrapper:hover .hover-image {
    opacity: 1;
}

/* 右侧内容 */
.meetings-content {
    flex: 1;
    max-width: 580px;
}

.meetings-title {
    font-size: 36px;
    font-weight: 700;
    color: #4472C4;
    margin-bottom: 30px;
    line-height: 1.3;
}

.meetings-description {
    font-size: 16px;
    line-height: 1.6;
    color: #4472C4;
    margin-bottom: 20px;
}

.meetings-subtitle {
    font-size: 28px;
    font-weight: 700;
    color: #4472C4;
    margin: 40px 0 30px 0;
    line-height: 1.3;
}

.meetings-benefits {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.benefit-item {
    padding: 0;
}

.benefit-title {
    font-size: 20px;
    font-weight: 700;
    color: #4472C4;
    margin-bottom: 8px;
}

.benefit-description {
    font-size: 16px;
    line-height: 1.6;
    color: #4472C4;
    margin: 0;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .meetings-section {
        padding: 60px 0;
    }
    
    .meetings-container {
        flex-direction: column;
        gap: 40px;
        padding: 0 15px;
    }
    
    .meetings-image-wrapper {
        width: 100%;
        max-width: 400px;
        height: 540px;
    }
    
    .meetings-title {
        font-size: 28px;
        text-align: center;
        margin-bottom: 25px;
    }
    
    .meetings-subtitle {
        font-size: 24px;
        text-align: center;
        margin: 35px 0 25px 0;
    }
    
    .meetings-description {
        font-size: 15px;
        text-align: center;
        margin-bottom: 18px;
    }
    
    .benefit-title {
        font-size: 18px;
        text-align: center;
    }
    
    .benefit-description {
        font-size: 15px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .meetings-section {
        padding: 50px 0;
    }
    
    .meetings-container {
        gap: 30px;
        padding: 0 10px;
    }
    
    .meetings-image-wrapper {
        height: 400px;
    }
    
    .meetings-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .meetings-subtitle {
        font-size: 20px;
        margin: 30px 0 20px 0;
    }
    
    .meetings-description {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .meetings-benefits {
        gap: 20px;
    }
    
    .benefit-title {
        font-size: 16px;
        margin-bottom: 6px;
    }
    
    .benefit-description {
        font-size: 14px;
    }
} 