/* Model Page Specific Styles */

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Grid Layout Improvements */
.models-grid-2x2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

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

.team-grid-balanced {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

/* Hero Section */
.model-hero {
    position: relative;
    padding: 8rem 0 4rem;
    text-align: center;
    color: #fff;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #000;
}

#heroVideo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

.model-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(184, 134, 11, 0.4), rgba(218, 165, 32, 0.4), rgba(139, 105, 20, 0.4));
    z-index: 2;
}

.model-hero-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/assets/images/models/hero.png');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.model-hero .container {
    position: relative;
    z-index: 3;
}

.model-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 2rem;
}

.model-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease-out;
}

.model-hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.4);
    animation: fadeInUp 1s ease-out 0.3s both;
}

.model-hero-tags {
    display: inline-flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.model-hero-tag {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    border: 1px solid rgba(255,255,255,0.3);
    font-weight: 500;
}

/* Video Background - Removed duplicate rule, using #heroVideo instead */

.model-hero-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/assets/images/models/hero-fallback.png') center/cover;
    z-index: -2;
    opacity: 0;
    transition: opacity 0.5s ease;
}

/* Business Overview Section */
.business-overview {
    padding: 4rem 0;
    background: #fff;
}

.overview-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.overview-title {
    color: #B8860B;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 600;
    line-height: 1.3;
}

.overview-title-accent {
    color: #DAA520;
}

.overview-message {
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.05), rgba(218, 165, 32, 0.05));
    padding: 2.5rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    border-left: 4px solid #B8860B;
}

.overview-message p {
    font-size: 1.3rem;
    line-height: 1.7;
    color: #333;
    margin: 0;
    font-weight: 500;
}

.overview-message-accent {
    color: #B8860B;
    font-weight: 600;
}

/* Image Text Layout */
.overview-image-text-section {
    margin-top: 4rem;
}

.image-text-item {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 4rem;
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-text-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.image-text-item.reverse {
    flex-direction: row-reverse;
}

.image-text-image {
    flex: 0 0 45%;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.image-text-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.image-text-content {
    flex: 1;
    padding: 1rem 0;
}

.image-text-title {
    font-size: 1.8rem;
    color: #B8860B;
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
}

.image-text-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #B8860B, #DAA520);
    border-radius: 2px;
}

/* 右图左文布局时，装饰线在右边 */
.image-text-item.reverse .image-text-title::after {
    left: auto;
    right: 0;
}

/* 右图左文布局时，装饰线在右边 */
.image-text-item.reverse .image-text-title::after {
    left: auto;
    right: 0;
}

.image-text-desc {
    color: #666;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Legacy styles for backward compatibility */
.overview-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.overview-point {
    text-align: center;
    padding: 1.5rem;
}

.overview-point .service-feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
}

/* Features Section */
.features-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.features-section h2 {
    text-align: center;
    color: #B8860B;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 600;
}

/* Desktop/Tablet Grid */
.features-section .features-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 2rem !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
}

/* Force grid layout on desktop */
@media (min-width: 993px) {
    .features-section .features-grid {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        grid-auto-flow: column !important;
    }

    .features-section .features-grid .feature-card {
        display: block !important;
        width: auto !important;
        flex: none !important;
    }
}

.feature-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Mobile Swiper */
.features-swiper {
    position: relative;
    padding-bottom: 3rem;
}

.features-swiper-container {
    overflow: hidden;
    margin: 0 -0.5rem;
}

.features-swiper-wrapper {
    display: flex;
    gap: 1rem;
    padding: 0 0.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.features-swiper-wrapper::-webkit-scrollbar {
    display: none;
}

.features-swiper .feature-card {
    min-width: 220px;
    max-width: 240px;
    flex-shrink: 0;
    margin-bottom: 0;
}

.features-swiper-pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #ddd;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet.active {
    background: #B8860B;
    transform: scale(1.2);
}

/* Show/Hide based on screen size */
/* Desktop (large screens) */
@media (min-width: 993px) {
    .features-section .desktop-only {
        display: block !important;
    }

    .features-section .mobile-only {
        display: none !important;
    }
}

/* Tablet and Mobile */
@media (max-width: 992px) {
    .features-section .desktop-only {
        display: none !important;
    }

    .features-section .mobile-only {
        display: block !important;
    }
}

.feature-card h3 {
    color: #B8860B;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Active Models Section */
.active-models {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa, #fff);
}

.active-models h2 {
    text-align: center;
    color: #B8860B;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.active-models > .container > p {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

/* Model Lineup Section */
.model-lineup {
    padding: 4rem 0;
    background: #fff;
}

.model-lineup h2 {
    text-align: center;
    color: #B8860B;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 600;
}

.model-type-card {
    background: linear-gradient(135deg, #fff, #fafafa);
    border: 2px solid #B8860B;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(184, 134, 11, 0.15);
    transition: all 0.3s ease;
    position: relative;
}

.model-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(184, 134, 11, 0.25);
}

.model-type-image {
    height: 180px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.model-type-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.8;
}

.model-type-age-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    background: rgba(184, 134, 11, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    font-weight: bold;
    backdrop-filter: blur(5px);
}

.model-type-content {
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.1), rgba(184, 134, 11, 0.05));
    padding: 1.5rem;
    text-align: center;
}

.model-type-title {
    color: #B8860B;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.model-type-desc {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.model-type-features {
    background: white;
    border-radius: 15px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.model-type-features h4 {
    color: #B8860B;
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.model-type-tags {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
    justify-content: center;
}

.model-type-tag {
    background: rgba(184, 134, 11, 0.1);
    color: #B8860B;
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.8rem;
    border: 1px solid rgba(184, 134, 11, 0.2);
}

.model-type-btn {
    display: inline-block;
    background: linear-gradient(135deg, #B8860B, #A0750A);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.3);
}

.model-type-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184, 134, 11, 0.4);
    color: white;
    text-decoration: none;
}

/* Service Features */
.service-features {
    padding: 4rem 0;
    background: #fff;
}

.service-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.service-feature-card {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: rgba(184, 134, 11, 0.3);
}

.service-feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #B8860B, #DAA520);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-feature-title {
    color: #B8860B;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.service-feature-desc {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-feature-list {
    text-align: left;
    color: #666;
    line-height: 1.6;
    font-size: 0.9rem;
}

.service-feature-list li {
    margin-bottom: 0.5rem;
}

/* Models Slider */
.models-slider-wrapper {
    position: relative;
}

.models-slider-container {
    position: relative;
    overflow: hidden;
    margin: 0 -2rem;
    border-radius: 15px;
}

.models-slider {
    display: flex;
    gap: 2rem;
    padding: 0 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.models-slider::-webkit-scrollbar {
    display: none;
}

.model-card {
    min-width: 320px;
    flex-shrink: 0;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.model-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.model-card-image {
    height: 350px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.model-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.model-card-content {
    padding: 1.5rem;
}

.model-card-name {
    color: #B8860B;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.model-card-desc {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.model-card-details {
    margin-bottom: 1rem;
}

.model-card-detail {
    color: #666;
    font-size: 0.9rem;
    margin: 0.3rem 0;
}

.model-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.model-card-header h3 {
    color: #B8860B;
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.model-card-age {
    background: rgba(184, 134, 11, 0.1);
    color: #B8860B;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
}

.model-card-details {
    margin-bottom: 1rem;
}

.model-card-detail {
    color: #666;
    font-size: 0.9rem;
    margin: 0.3rem 0;
}

.model-card-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.model-card-tag {
    background: rgba(184, 134, 11, 0.1);
    color: #B8860B;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
}

/* Slider Controls */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.slider-btn:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.slider-btn-left {
    left: -20px;
}

.slider-btn-right {
    right: -20px;
}

/* Team Photos Section */
.team-photos {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa, #fff);
}

.team-photos h2 {
    text-align: center;
    color: #B8860B;
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.team-photos > .container > p {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.team-content-section {
    padding: 1rem;
}

.team-content-title {
    color: #B8860B;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.team-content-desc {
    color: #666;
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.team-content-tags {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.team-content-tag {
    background: rgba(184, 134, 11, 0.1);
    color: #B8860B;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid rgba(184, 134, 11, 0.2);
}

/* Team Results Section */
.team-results {
    margin-top: 3rem;
}

.team-results-title {
    text-align: center;
    color: #B8860B;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.team-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-result-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.team-result-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.team-result-image {
    height: 180px;
    overflow: hidden;
}

.team-result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-result-content {
    padding: 1.5rem;
    text-align: center;
}

.team-result-title {
    color: #B8860B;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.team-result-desc {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

.team-2col-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.team-image-hover {
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.team-image-hover:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.team-image-hover img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

/* Collaboration Section */
.collaboration-section {
    padding: 6rem 0;
    background: #f7f7f7;
    position: relative;
    overflow: hidden;
}

.collaboration-bg-decoration-1 {
    position: absolute;
    top: -50%;
    left: -10%;
    width: 120%;
    height: 200%;
    background: radial-gradient(circle, rgba(184, 134, 11, 0.1) 0%, transparent 70%);
    z-index: 1;
}

.collaboration-bg-decoration-2 {
    position: absolute;
    top: 20%;
    right: -5%;
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, rgba(218, 165, 32, 0.15), transparent);
    border-radius: 50%;
    z-index: 1;
}

.collaboration-section .container {
    position: relative;
    z-index: 2;
}

.collaboration-header {
    text-align: center;
    margin-bottom: 4rem;
}

.collaboration-subtitle {
    display: inline-block;
    background: linear-gradient(90deg, #B8860B, #DAA520);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

.collaboration-title {
    color: #333;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.collaboration-desc {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.collaboration-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin: 4rem 0;
}

.collaboration-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.collaboration-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(184, 134, 11, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.collaboration-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(184, 134, 11, 0.3);
}

.collaboration-card-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    opacity: 0.2;
    z-index: 1;
}

.collaboration-card-decoration-1 {
    background: linear-gradient(45deg, #B8860B, #DAA520);
}

.collaboration-card-decoration-2 {
    background: linear-gradient(45deg, #DAA520, #B8860B);
}

.collaboration-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
}

.collaboration-card-icon-1 {
    background: linear-gradient(45deg, #B8860B, #DAA520);
}

.collaboration-card-icon-2 {
    background: linear-gradient(45deg, #DAA520, #B8860B);
}

.collaboration-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.collaboration-card-title {
    color: #333;
    margin: 0;
    font-size: 1.8rem;
    font-weight: 600;
}

.collaboration-card-desc {
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
}

.collaboration-card-list {
    list-style: none;
    padding: 0;
    position: relative;
    z-index: 2;
}

.collaboration-card-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.collaboration-card-bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 1rem;
}

.collaboration-card-bullet-1 {
    background: #B8860B;
}

.collaboration-card-bullet-2 {
    background: #DAA520;
}

.collaboration-card-text {
    color: #333;
    font-weight: 500;
}

/* Brand Message Section */
.brand-message-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: #fff;
    text-align: center;
}

.brand-message-content {
    max-width: 700px;
    margin: 0 auto;
}

.brand-message-title {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.brand-message-desc {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.6;
}

.brand-message-cta {
    display: flex;
    justify-content: center;
}

.brand-message-btn {
    display: inline-block;
    background: #B8860B;
    color: #fff;
    padding: 1.2rem 3rem;
    text-decoration: none;
    border-radius: 35px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
}

.brand-message-btn:hover {
    background: #A0750A;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    color: #fff;
    text-decoration: none;
}

.collaboration-card-list {
    list-style: none;
    padding: 0;
}

.collaboration-card-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.collaboration-card-bullet {
    width: 8px;
    height: 8px;
    background: #B8860B;
    border-radius: 50%;
    margin-right: 1rem;
}

.collaboration-card-text {
    color: rgba(109, 109, 109, 0.8);
}

/* Tablet Responsive */
@media (max-width: 1024px) and (min-width: 769px) {
    .flow-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .flow-steps::before {
        display: none;
    }

    .flow-step::after {
        display: none;
    }
}

/* Tablet and Mobile Responsive */
@media (max-width: 992px) {
    .model-hero {
        height: 60vh;
        min-height: 400px;
    }

    #heroVideo {
        object-position: center center;
        /* 确保移动端视频正确填充容器 */
    }

    .model-hero-title {
        font-size: 2.5rem;
    }

    .model-hero-subtitle {
        font-size: 1.1rem;
    }

    .models-grid-2x2,
    .models-grid-3x1 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .team-2col-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .collaboration-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .slider-btn {
        width: 40px !important;
        height: 40px !important;
    }

    .slider-btn-left {
        left: -15px !important;
    }

    .slider-btn-right {
        right: -15px !important;
    }

    .models-slider-container {
        margin: 0 -1rem;
    }

    .models-slider {
        padding: 0 1rem;
        gap: 1rem;
    }

    .model-card {
        min-width: calc(100vw - 4rem);
        max-width: calc(100vw - 4rem);
        width: calc(100vw - 4rem);
    }

    .model-card-image {
        height: 300px;
    }

    .team-image-hover img {
        height: 250px;
    }

    .team-grid-balanced {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Collaboration Section mobile optimization */
    .collaboration-section h2 {
        font-size: 2.5rem !important;
    }

    .collaboration-section .container > div:first-child p {
        font-size: 1.1rem !important;
    }

    .collaboration-section .container > div:nth-child(2) > div {
        padding: 2rem !important;
    }

    /* Team photos mobile optimization */
    .team-photos .container > div:last-child > div {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    .team-photos h2 {
        font-size: 2.2rem !important;
    }

    .team-photos h3 {
        font-size: 1.8rem !important;
    }
}

@media (max-width: 480px) {
    .model-hero-title {
        font-size: 2rem;
    }

    .service-features-grid {
        grid-template-columns: 1fr;
    }

    /* 超小屏幕优化服务流程 */
    .service-flow-section {
        padding: 2rem 0.5rem;
    }

    .flow-step {
        display: block !important;
        flex-direction: column !important;
        padding: 1.5rem 0.8rem;
        margin-bottom: 1.5rem;
        text-align: center;
        background: #f8f9fa;
        border-radius: 12px;
        gap: 0 !important;
    }

    .flow-step-number {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
        margin: 0 auto 1rem auto;
    }

    .flow-step-title {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
        word-break: keep-all;
        overflow-wrap: break-word;
        text-align: center;
    }

    .flow-step-desc {
        font-size: 0.9rem;
        line-height: 1.8;
        text-align: center;
        padding: 0 0.5rem;
        word-break: keep-all;
        overflow-wrap: break-word;
    }

    /* Image Text Layout Super Small */
    .image-text-item {
        padding: 1.5rem 1rem;
        margin-bottom: 2rem;
        gap: 1.5rem;
    }

    .image-text-image img {
        height: 180px;
    }

    .image-text-title {
        font-size: 1.3rem;
    }

    .image-text-desc {
        font-size: 0.95rem;
        padding: 0 0.5rem;
    }

    /* Features Section Super Small */
    .features-section h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .features-swiper .feature-card {
        min-width: 180px;
        max-width: 200px;
        padding: 1.2rem;
    }

    .features-swiper .feature-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }

    .features-swiper .feature-card p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    /* Why Choose Us Mobile */
    .why-choose-us {
        padding: 4rem 0;
    }

    .why-choose-us h2 {
        font-size: 2rem;
        margin-bottom: 3rem;
    }

    .section-subtitle {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .reasons-section {
        margin-bottom: 4rem;
    }

    .reasons-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .reason-card-image {
        height: 150px;
    }

    .reason-card-content {
        padding: 1.5rem;
    }

    /* Image Text Layout Mobile */
    .image-text-item {
        flex-direction: column !important;
        gap: 2rem;
        padding: 2rem 1.5rem;
        margin-bottom: 2.5rem;
    }

    .image-text-item.reverse {
        flex-direction: column !important;
    }

    .image-text-image {
        flex: none;
        width: 100%;
        max-width: 100%;
    }

    .image-text-image img {
        height: 220px;
    }

    .image-text-content {
        text-align: center;
        padding: 0;
    }

    .image-text-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .image-text-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .image-text-desc {
        font-size: 1rem;
        line-height: 1.7;
    }

    /* Features Section Mobile */

    .features-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .features-swiper .feature-card {
        min-width: 200px;
        max-width: 220px;
        padding: 1.5rem;
    }

    .features-swiper-container {
        margin: 0 -0.5rem;
    }

    .features-swiper-wrapper {
        padding: 0 0.5rem;
    }

    .flow-steps {
        gap: 2rem;
    }

    .flow-steps {
        display: block !important;
        grid-template-columns: none !important;
    }

    .flow-steps::before {
        display: none;
    }

    .flow-step::after {
        display: none;
    }

    .flow-step {
        display: block !important;
        flex-direction: column !important;
        text-align: center;
        padding: 2rem 1rem;
        margin-bottom: 2rem;
        width: 100%;
        box-sizing: border-box;
        background: #f8f9fa;
        border-radius: 12px;
        gap: 0 !important;
    }

    .flow-step-number {
        width: 60px;
        height: 60px;
        margin: 0 auto 1.5rem auto;
        flex-shrink: 0;
    }

    .flow-step-content {
        width: 100%;
        max-width: none;
    }

    .flow-step-title {
        font-size: 1.3rem;
        margin-bottom: 1rem;
        line-height: 1.4;
        text-align: center;
        color: #B8860B;
        font-weight: 600;
    }

    .flow-step-desc {
        font-size: 1rem;
        line-height: 1.7;
        text-align: center;
        padding: 0 1rem;
        color: #666;
    }

    .service-flow-section {
        padding: 3rem 1rem;
        margin-top: 2rem;
    }

    .service-flow-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
        text-align: center;
    }

    /* Collaboration Mobile */
    .collaboration-section {
        padding: 4rem 0;
    }

    .collaboration-cards {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .collaboration-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .models-grid-3x1 {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Back to Top Button - Same as about page */
.back-to-top {
    position: fixed;
    bottom: 50px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: rgba(184, 134, 11, 0.9);
    border: 2px solid #B8860B;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 6rem 0;
    background: #f8f9fa;
}

.why-choose-us h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 4rem;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 2rem;
    color: #B8860B;
    margin-bottom: 3rem;
    font-weight: 600;
}

/* Reasons Section */
.reasons-section {
    margin-bottom: 6rem;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.reason-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
    overflow: hidden;
}

.reason-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-color: rgba(184, 134, 11, 0.3);
}

.reason-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.reason-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.reason-card-content {
    padding: 2rem;
    text-align: center;
}

.reason-number {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(184, 134, 11, 0.9);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.image-label {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 400;
    backdrop-filter: blur(5px);
}

.reason-title {
    color: #333;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.reason-desc {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Service Flow Section */
.service-flow-section {
    background: white;
    padding: 4rem 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    margin-top: 3rem;
}

.flow-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
}

/* 优雅的连接线 */
.flow-steps::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(184, 134, 11, 0.3) 20%,
        rgba(184, 134, 11, 0.6) 50%,
        rgba(184, 134, 11, 0.3) 80%,
        transparent 100%);
    z-index: 1;
    transform: translateY(-50%);
}

/* 连接点 */
.flow-step::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -8px;
    width: 16px;
    height: 16px;
    background: #B8860B;
    border-radius: 50%;
    transform: translateY(-50%);
    z-index: 2;
    box-shadow: 0 0 0 3px white, 0 0 0 4px rgba(184, 134, 11, 0.3);
}

.flow-step:last-child::after {
    display: none;
}

.flow-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.flow-step:hover {
    background: rgba(184, 134, 11, 0.05);
    transform: translateY(-3px);
}

.flow-step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #B8860B 0%, #DAA520 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.3);
}

.flow-step-content {
    flex: 1;
}

.flow-step-title {
    color: #333;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.flow-step-desc {
    color: #666;
    line-height: 1.5;
    font-size: 0.9rem;
}

/* ===== FINAL OVERRIDE - FORCE DESKTOP GRID LAYOUT ===== */
@media screen and (min-width: 993px) {
    .features-section .features-grid.desktop-only {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 2rem !important;
        max-width: 1200px !important;
        margin: 0 auto !important;
        grid-auto-flow: row !important;
    }

    .features-section .features-grid.desktop-only .feature-card {
        display: block !important;
        width: auto !important;
        min-width: auto !important;
        max-width: none !important;
        flex: none !important;
        grid-column: auto !important;
        margin: 0 !important;
    }

    .features-section .mobile-only {
        display: none !important;
    }

    .features-section .desktop-only {
        display: grid !important;
    }
}
