/* Brand Story 页面专用样式 */

/* 页面整体背景色 */
body {
    background-color: #edebf0;
}

/* Company Description Card - 悬浮在两个模块中间 */
.company-description-card {
    background: #ffffff;
    border-radius: 0;
    text-align: center;
    padding: 40px;
    max-width: 900px;
    width: calc(100% - 60px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    text-align: cent;
    position: absolute;
    top: 85vh;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}
.hero-background {
    background-image: url('assets/Group_3 (10).png');
}
.company-description-text {
    color: #333;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    font-weight: 400;
}

.company-read-more-btn {
    background: linear-gradient(135deg, #2c5282 0%, #1a365d 100%);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.company-read-more-btn:hover {
    background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.company-read-more-btn svg {
    transition: transform 0.3s ease;
}

.company-read-more-btn:hover svg {
    transform: translateX(5px);
}

/* Timeline Design Styles */
.timeline-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 40px 60px 40px 20px;
    margin-right: 60px;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 30px 40px;
    position: relative;
}


.timeline-year {
    font-size: 2.8rem;
    font-weight: 700;
    color: #AA701E;
    margin: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    padding-left: 40px;
}

.timeline-year::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 2.8rem;
    color: #AA701E;
    font-weight: 700;
}

.timeline-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin: 0;
    text-align: justify;
    max-width: 100%;
    font-weight: 400;
}

/* Image Overlay Styles */
.asymmetry-image {
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    min-height: 400px;
}

.image-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    background: rgba(0, 0, 0, 0.4);
    padding: 25px 35px;
}

.image-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin: 0;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    text-transform: uppercase;
}

.asymmetry-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
    transition: all 0.3s ease;
}

.asymmetry-image:hover .asymmetry-img {
    filter: brightness(0.5);
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .timeline-content {
        padding: 20px 20px 20px 10px;
        margin-right: 20px;
        gap: 30px;
    }
    
    .timeline-item {
        padding: 20px 25px;
        gap: 20px;
    }
    
    
    .timeline-year {
        font-size: 2.2rem;
        letter-spacing: 1px;
        padding-left: 30px;
    }
    
    .timeline-year::before {
        font-size: 2.2rem;
    }
    
    .timeline-text {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .image-title {
        font-size: 1.4rem;
        letter-spacing: 1px;
    }
    
    .image-overlay {
        padding: 15px 20px;
        background: rgba(0, 0, 0, 0.5);
    }
    
    .asymmetry-image {
        min-height: 300px;
    }
}

/* Information Asymmetry Section */
.information-asymmetry {
    padding: 20px 0 0px;
    position: relative;
    margin: 20px 0;
}

/* 第一个 information-asymmetry section - 特定样式 */
.first-asymmetry-section {
    padding-top: 150px !important;
}


/* Reverse layout for alternating sections */
.information-asymmetry.reverse .asymmetry-container {
    grid-template-columns: 1fr 1fr;
}

.information-asymmetry.reverse .asymmetry-content {
    order: 1;
}

.information-asymmetry.reverse .asymmetry-image {
    order: 2;
}

.information-asymmetry.reverse .asymmetry-text-container {
    background: #e6e2ec;
}

.asymmetry-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: end;
    background: white;
}

.asymmetry-image {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.asymmetry-image:hover {
    transform: translateY(-5px);
}

.asymmetry-img {
    width: 750px;
    height: 560px;
    
    object-position: center;
    display: block;
}

.asymmetry-content {
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.asymmetry-text-container {
    background: #ffffff;
    border-radius: 0;
    padding: 40px;
    margin-left: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

/* Vision section specific styling */
.vision-section .asymmetry-text-container {
    min-height: 400px;
    padding: 50px 40px;
}

/* Remove background for last three sections */
.no-background .asymmetry-container {
    background: transparent;
}

.asymmetry-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #f39c12;
    margin-bottom: 30px;
    line-height: 1.3;
    letter-spacing: 0.5px;
    padding: 0 40px;
}

.asymmetry-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
    font-weight: 400;
}

.asymmetry-text:last-child {
    margin-bottom: 0;
}

/* 响应式设计 - Brand Story */
@media (max-width: 1024px) {
    .company-hero-title {
        font-size: 3rem;
    }
    
    .company-description-card {
        padding: 35px;
        top: 80vh;
        width: calc(100% - 50px);
    }
    
    .asymmetry-container {
        gap: 40px;
        padding: 0 25px;
    }
    
    .asymmetry-image {
        border-radius: 0;
    }
    
    .asymmetry-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .company-profile-hero {
        min-height: 90vh;
        padding-bottom: 80px;
    }
    
    .company-hero-title {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }
    
    .company-hero-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }
    
    .company-description-card {
        padding: 25px;
        top: 75vh;
        text-align: center;
        width: calc(100% - 40px);
    }
    
    .information-asymmetry {
        padding: 120px 0 60px;
    }
    
    /* 移动端第一个 information-asymmetry section */
    .first-asymmetry-section {
        padding-top: 200px !important;
    }
    
    .asymmetry-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
        text-align: center;
    }
    
    .information-asymmetry.reverse .asymmetry-container {
        grid-template-columns: 1fr;
    }
    
    .information-asymmetry.reverse .asymmetry-content,
    .information-asymmetry.reverse .asymmetry-image {
        order: 0;
    }
    
    .asymmetry-image {
        border-radius: 0;
    }
    
    .asymmetry-content {
        padding: 0;
        height: auto;
    }
    
    .asymmetry-text-container {
        padding: 25px;
        margin-left: 0;
        border-radius: 0;
    }
    
    .asymmetry-title {
        padding: 0 25px;
        font-size: 1.8rem;
        margin-bottom: 25px;
    }
    
    .asymmetry-img {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .company-hero-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .company-hero-subtitle {
        font-size: 0.95rem;
    }
    
    .company-description-card {
        padding: 20px;
        top: 70vh;
        width: calc(100% - 30px);
    }
    
    .company-description-text {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .asymmetry-title {
        font-size: 1.6rem;
        line-height: 1.4;
    }
    
    .asymmetry-text {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .asymmetry-img {
        height: 250px;
    }
    
    .asymmetry-content {
        padding: 0;
        height: auto;
    }
    
    .asymmetry-text-container {
        padding: 20px;
        margin-left: 0;
        border-radius: 0;
    }
    
    .asymmetry-title {
        padding: 0 20px;
    }
}


.vision-mission-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        rgba(20, 25, 30, 0.8), 
        rgba(35, 45, 55, 0.8)
    ),
    url('./assets/Group_5 (1).png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.vision-mission-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    width: 100%;
    padding: 0 30px;
    text-align: center;
}

.vision-mission-text {
    margin-bottom: 60px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.vision-mission-logo {
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out 0.1s both;
}

.vision-mission-logo-img {
    height: 120px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.vision-mission-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #f39c12;
    margin-bottom: 30px;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.vision-mission-description {
    font-size: 1.1rem;
    font-weight: 300;
    color: white;
    line-height: 1.8;
    max-width: 950px;
    margin: 0 auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.vision-mission-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.gallery-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.gallery-img {
    width: 100%;
    height: 300px;
    
    object-position: center;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.05);
}

/* 响应式设计 - Vision and Mission */
@media (max-width: 1024px) {
    .vision-mission-logo-img {
        height: 100px;
    }
    
    .vision-mission-title {
        font-size: 3rem;
    }
    
    .vision-mission-description {
        font-size: 1rem;
    }
    
    .vision-mission-gallery {
        gap: 15px;
    }
    
    .gallery-img {
        height: 260px;
    }
}

@media (max-width: 768px) {
    .vision-mission-section {
        padding: 60px 0;
        min-height: auto;
    }
    
    .vision-mission-content {
        padding: 0 20px;
    }
    
    .vision-mission-logo-img {
        height: 80px;
    }
    
    .vision-mission-title {
        font-size: 2.5rem;
        letter-spacing: 1px;
        margin-bottom: 25px;
    }
    
    .vision-mission-description {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .vision-mission-gallery {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
        gap: 12px;
        margin-top: 40px;
    }
    
    .gallery-img {
        height: 220px;
    }
}

@media (max-width: 480px) {
    .vision-mission-logo-img {
        height: 70px;
    }
    
    .vision-mission-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .vision-mission-description {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .vision-mission-gallery {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, 1fr);
        gap: 10px;
        margin-top: 30px;
    }
    
    .gallery-img {
        height: 240px;
    }
}

/* Starpronto Prosperity Group Section */
.starpronto-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.starpronto-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/city-background.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.starpronto-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 37, 45, 0.7);
    z-index: 2;
}

.starpronto-content {
    position: relative;
    z-index: 3;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 30px;
}

.starpronto-container {
    max-width: 1000px;
    text-align: center;
    color: #ffffff;
}

.starpronto-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 50px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.starpronto-text-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.starpronto-text {
    font-size: 1.5rem;
    line-height: 1.8;
    color: #ffffff;
    max-width: 900px;
    margin: 0 auto;
    font-weight: 400;
}

/* Mobile responsiveness for Starpronto section */
@media (max-width: 768px) {
    .starpronto-section {
        min-height: 500px;
    }
    
    .starpronto-content {
        padding: 60px 20px;
    }
    
    .starpronto-title {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }
    
    .starpronto-text {
        font-size: 1.3rem;
        line-height: 1.7;
    }
    
    .starpronto-text-container {
        gap: 25px;
    }
}

@media (max-width: 480px) {
    .starpronto-section {
        min-height: 450px;
    }
    
    .starpronto-content {
        padding: 50px 15px;
    }
    
    .starpronto-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
        letter-spacing: 1px;
    }
    
    .starpronto-text {
        font-size: 1.1rem;
        line-height: 1.6;
    }
    
    .starpronto-text-container {
        gap: 20px;
    }
}

