/* About Page - Single Page Parallax Design */

/* Import Google Fonts - Open Source, Free for Commercial Use */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;500;600;700;800;900&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* About Page Font Family */
body.page-template-page-about,
.parallax-container,
.parallax-container * {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
}

.parallax-container {
    overflow-x: hidden;
}

/* Section Base Styles */
.section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.section:not(#hero-section) {
    min-height: calc(100vh - 80px);
    /* Subtract header height */
    padding-bottom: 5rem;
}

.section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(2px);
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Hero Section */
.hero-section {
    position: relative;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video-background iframe {
    width: 100vw;
    height: 56.25vw;
    /* 16:9 aspect ratio */
    min-height: 100vh;
    min-width: 177.77vh;
    /* 16:9 aspect ratio */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Mobile Image Background */
.image-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-image: url('https://meishanauto.com/wp-content/uploads/2025/06/pic3-600x900.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Desktop/Mobile visibility controls */
.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    /* height: 50vh; */
    padding-bottom: 15rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.01em;
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 2rem;
    opacity: 0.9;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.hero-description {
    font-size: 1.2rem;
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.7;
    letter-spacing: -0.005em;
}

.scroll-indicator {
    position: absolute;
    bottom: 25rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    opacity: 0.8;
    z-index: 10;
    width: auto;
}

.scroll-indicator span {
    display: block;
    margin-bottom: 15px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 3px solid white;
    border-bottom: 3px solid white;
    transform: rotate(45deg);
    margin: 0 auto;
    opacity: 0.9;
}

/* Introduction Section - No Background */
.intro-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    background-attachment: scroll;
    color: #2c3e50;
    padding-bottom: 5rem;
}

.intro-section .section-title {
    color: #2c3e50;
    text-shadow: none;
    font-weight: 800;
    letter-spacing: -0.015em;
    padding-top: 2rem;
}

.intro-section .text-content {
    color: #2c3e50;
}

.intro-section .text-content h2 {
    color: #2c3e50;
}

.intro-section .content-text p {
    color: #495057;
    font-size: 1.15rem;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: -0.003em;
}

.intro-section .stat-item {
    background: rgba(44, 62, 80, 0.1);
    color: #2c3e50;
}

.intro-section .stat-number {
    color: #D7183D;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.intro-section .stat-label {
    color: #6c757d;
    font-weight: 500;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

/* Refined Intro Section Layout */
.intro-section .intro-header {
    text-align: center;
    margin-bottom: 4rem;
}

.intro-section .section-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    margin-top: 1rem;
    font-weight: 400;
}

.intro-section .main-description {
    margin-bottom: 3rem;
}

.intro-section .lead-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2c3e50;
    margin: 0;
    font-weight: 400;
}

.intro-section .feature-highlights {
    margin-bottom: 3rem;
}

.intro-section .highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.intro-section .highlight-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.intro-section .highlight-item:hover {
    transform: translateX(5px);
}

.intro-section .highlight-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D7183D;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.intro-section .highlight-item:hover .highlight-icon {
    background: linear-gradient(135deg, #D7183D, #ff4757);
    color: white;
    transform: scale(1.1);
}

.intro-section .highlight-content h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 0.5rem 0;
}

.intro-section .highlight-content p {
    margin: 0;
    line-height: 1.6;
    color: #6c757d;
}

.intro-section .mission-statement {
    position: relative;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(215, 24, 61, 0.05), rgba(255, 71, 87, 0.05));
    border-radius: 16px;
    border-left: 4px solid #D7183D;
}

.intro-section .mission-statement blockquote {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.7;
    color: #2c3e50;
    margin: 0;
    position: relative;
}

.intro-section .mission-statement blockquote::before {
    content: '"';
    font-size: 3rem;
    color: #D7183D;
    position: absolute;
    top: -10px;
    left: -20px;
    font-family: Georgia, serif;
}

/* Refined Visual Content */
.intro-section .visual-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.intro-section .image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.intro-section .intro-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.intro-section .image-container:hover .intro-image {
    transform: scale(1.05);
}

.intro-section .image-decorations {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.intro-section .decoration-element {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #D7183D;
    box-shadow: 0 4px 15px rgba(215, 24, 61, 0.2);
    animation: decorationPulse 2s ease-in-out infinite;
}

.intro-section .decoration-element.top-left {
    top: 20px;
    left: 20px;
    animation-delay: 0s;
}

.intro-section .decoration-element.bottom-right {
    bottom: 20px;
    right: 20px;
    animation-delay: 1s;
}

.intro-section .image-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #D7183D, #ff4757);
    color: white;
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(215, 24, 61, 0.4);
    animation: slideInRight 0.8s ease-out;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

@keyframes decorationPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(215, 24, 61, 0.2), 0 0 0 0 rgba(215, 24, 61, 0.3);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(215, 24, 61, 0.3), 0 0 0 8px rgba(215, 24, 61, 0.1);
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.intro-section .stats-showcase {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.intro-section .stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.intro-section .stat-item {
    text-align: center;
    padding: 1.5rem 1rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.intro-section .stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #D7183D, #ff4757);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.intro-section .stat-item:hover::before {
    transform: scaleX(1);
}

.intro-section .stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.intro-section .stat-icon {
    font-size: 2rem;
    color: #D7183D;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.intro-section .stat-item:hover .stat-icon {
    transform: scale(1.1);
    color: #ff4757;
}

.intro-section .stat-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #D7183D;
    margin-bottom: 0.5rem;
    display: block;
}

.intro-section .stat-label {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Sections with background images - Parallax controlled by JavaScript */
.section[data-bg="image"] {
    background-attachment: scroll;
    background-position: center center;
}

/* Hero section with video background */
#hero-section {
    background-attachment: scroll;
}

/* Section Titles */
.section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3rem;
    font-weight: 700;
    color: white;
    text-align: center;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.01em;
}

.section-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    margin-bottom: 1rem;
}

/* Content Layouts */
.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.text-content {
    color: white;
}

.text-content h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: white;
    letter-spacing: -0.01em;
}

.content-text p {
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    letter-spacing: -0.003em;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
    font-feature-settings: 'tnum';
}

.stat-label {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

/* Background Section - Company Showcase */
.background-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 6rem 0;
}

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

.background-section .section-title {
    color: #2c3e50;
    font-weight: 700;
    position: relative;
}

.background-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #D7183D, #ff4757);
    border-radius: 2px;
}

.background-section .section-subtitle {
    font-size: 1.1rem;
    color: #495057;
    margin-top: 1.5rem;
    font-weight: 400;
}

.company-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

.showcase-content .content-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.showcase-content .content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    border-left-color: #D7183D;
}

.showcase-content .card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #D7183D, #ff4757);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.showcase-content .card-icon i {
    display: block;
    line-height: 1;
}

.showcase-content .content-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.showcase-content .content-card h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 0.8rem 0;
}

.showcase-content .content-card p {
    margin: 0;
    line-height: 1.6;
    color: #6c757d;
}

.showcase-image {
    position: relative;
}

.showcase-image .image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.showcase-image .company-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.showcase-image .image-wrapper:hover .company-image {
    transform: scale(1.05);
}

.showcase-image .image-overlay-elements {
    position: absolute;
    bottom: 20px;
    left: 20px;
}

.showcase-image .overlay-stat {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.showcase-image .stat-value {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #D7183D;
    margin-bottom: 0.3rem;
}

.showcase-image .stat-text {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Legacy Content Cards for other sections */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.content-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.content-card h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fff;
    letter-spacing: -0.005em;
}

.content-card p {
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* Vision Section */
.vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.vision-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.vision-item h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #fff;
    letter-spacing: -0.005em;
}

.vision-item p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

/* Core Values */
.core-values {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.core-values h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    color: #fff;
    letter-spacing: -0.01em;
}

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

.value-item {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.value-item strong {
    color: #fff;
    display: block;
    margin-bottom: 0.5rem;
}

/* Philosophy Section */
.philosophy-section {
    background: linear-gradient(135deg, #444445, #1d1d1e);
}

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

.philosophy-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.philosophy-item h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.philosophy-item p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

/* Process Section */
.process-content {
    text-align: center;
    color: white;
}

.process-quote {
    font-size: 1.3rem;
    font-style: italic;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 4px solid #fff;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Loading Process Steps */
.process-intro {
    font-size: 1.2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Vehicle Loading Process Section */
.loading-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #2c3e50;
}

.loading-section .section-title {
    color: #2c3e50 !important;
    text-shadow: none !important;
    font-weight: 700;
    padding: 2rem 0;
}

.loading-section .section-subtitle {
    color: #6c757d !important;
    position: relative;
    display: block;
    width: fit-content;
    padding: 0 5rem;
    text-align: center;
    margin: 0 auto;
}

.loading-section .section-subtitle::before,
.loading-section .section-subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 50px;
    height: 1px;
    background: #6c757d;
}

.loading-section .section-subtitle::before {
    left: 0;
}

.loading-section .section-subtitle::after {
    right: 0;
}

.loading-section .process-intro {
    color: #6c757d !important;
}

/* Loading Process Steps Styling */
.loading-section .step-content h4 {
    color: #2c3e50 !important;
    font-weight: 600;
}

.loading-section .step-content p {
    color: #6c757d !important;
}

.loading-section .step-number {
    background: #19a657 !important;
    color: white !important;
    box-shadow: 0 0 0 2px #19a657, 0 4px 15px rgba(25, 166, 87, 0.3) !important;
    animation: greenPulse 2s infinite !important;
}

@keyframes greenPulse {

    0%,
    100% {
        box-shadow: 0 0 0 2px #19a657, 0 4px 15px rgba(25, 166, 87, 0.3);
    }

    50% {
        box-shadow: 0 0 0 6px rgba(25, 166, 87, 0.3), 0 4px 15px rgba(25, 166, 87, 0.5);
    }
}

/* Contact Section with Logo */
.contact-section {
    /* background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); */
    color: #2c3e50;
}

.contact-section .logo-container {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-section .company-logo {
    max-width: 250px;
    height: auto;
    margin: 0 auto;
    display: block;
}

.contact-section .section-title {
    color: #2c3e50 !important;
    text-shadow: none !important;
    margin-top: 1rem;
}

.contact-section .contact-subtitle,
.contact-section .contact-text {
    color: #6c757d !important;
}

/* Contact Section Buttons */
.contact-section .contact-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.contact-section .btn {
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    min-width: 180px;
    text-align: center;
}

.contact-section .btn-primary {
    background: linear-gradient(45deg, #dc3545, #c82333);
    color: white;
    border-color: #dc3545;
}

.contact-section .btn-primary:hover {
    background: linear-gradient(45deg, #c82333, #a71e2a);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.4);
}

.contact-section .btn-secondary {
    background: linear-gradient(45deg, #343a40, #23272b);
    color: white;
    border-color: #343a40;
}

.contact-section .btn-secondary:hover {
    background: linear-gradient(45deg, #23272b, #1d2124);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(52, 58, 64, 0.4);
}

/* Mobile responsive for contact buttons */
@media (max-width: 768px) {
    .contact-section .contact-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .contact-section .btn {
        width: 100%;
        max-width: 280px;
    }
}

.process-steps {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 3rem 0;
}

.process-steps::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, transparent, #667eea 20%, #764ba2 80%, transparent);
    transform: translateX(-50%);
    animation: lineGrow 2s ease-out;
}

@keyframes lineGrow {
    from {
        height: 0;
        top: 50%;
    }

    to {
        height: 100%;
        top: 0;
    }
}

.step-item {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    opacity: 0;
    animation: stepFadeIn 0.8s ease-out forwards;
}

.step-item:nth-child(1) {
    animation-delay: 0.2s;
}

.step-item:nth-child(2) {
    animation-delay: 0.4s;
}

.step-item:nth-child(3) {
    animation-delay: 0.6s;
}

.step-item:nth-child(4) {
    animation-delay: 0.8s;
}

.step-item:nth-child(5) {
    animation-delay: 1.0s;
}

.step-item:nth-child(6) {
    animation-delay: 1.2s;
}

.step-item:nth-child(7) {
    animation-delay: 1.4s;
}

@keyframes stepFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-item:nth-child(odd) {
    justify-content: flex-end;
    text-align: right;
}

.step-item:nth-child(even) {
    justify-content: flex-start;
    text-align: left;
}

.step-number {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #D7183D, #c82333);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    border: 3px solid white;
    box-shadow: 0 0 0 2px #D7183D, 0 4px 15px rgba(215, 24, 61, 0.3);
    z-index: 2;
    animation: stepPulse 2s infinite;
}

@keyframes stepPulse {

    0%,
    100% {
        box-shadow: 0 0 0 2px #19a657, 0 4px 15px rgba(25, 166, 87, 0.3);
    }

    50% {
        box-shadow: 0 0 0 6px rgba(25, 166, 87, 0.3), 0 4px 15px rgba(25, 166, 87, 0.5);
    }
}

.step-content {
    width: 400px;
    position: relative;
}

.step-item:nth-child(odd) .step-content {
    margin-right: calc(50% + 50px);
}

.step-item:nth-child(even) .step-content {
    margin-left: calc(50% + 50px);
}

.step-content::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, #667eea, transparent);
    top: 1.5rem;
}

.step-item:nth-child(odd) .step-content::before {
    right: -40px;
}

.step-item:nth-child(even) .step-content::before {
    left: -40px;
    background: linear-gradient(270deg, #667eea, transparent);
}

.step-content h4 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
    font-weight: 600;
    position: relative;
}

.step-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 0.5rem;
}

.step-note {
    font-weight: 600;
    color: #667eea !important;
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.step-note::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
}

/* Market Section */
.market-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.market-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.market-item h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.market-item p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

/* Contact Section */
.contact-content {
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
}

.contact-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.contact-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.contact-actions {
    margin-top: 3rem;
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-color: transparent;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
}

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

/* Animation Classes */
.animate-slide-up {
    opacity: 0;
    transform: translateY(50px);
}

.animate-slide-left {
    opacity: 0;
    transform: translateX(-50px);
}

.animate-slide-right {
    opacity: 0;
    transform: translateX(50px);
}

.animate-fade-in {
    opacity: 0;
}

.animate-scale-up {
    opacity: 0;
    transform: scale(0.8);
}

.animate-bounce {
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    40% {
        transform: translateY(-10px) translateX(-50%);
    }

    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .scroll-indicator {
        bottom: 20rem;
    }

    .scroll-indicator span {
        font-size: 0.8rem;
        margin-bottom: 12px;
    }

    .scroll-arrow {
        width: 20px;
        height: 20px;
        border-width: 2px;
    }

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

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

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

    /* Intro section mobile adjustments */
    .intro-section .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .intro-section .intro-image {
        max-width: 100%;
        margin-top: 1rem;
    }

    .stat-item {
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

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

    .content-card {
        padding: 1.5rem;
    }

    .vision-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .vision-item {
        padding: 2rem;
    }

    .vision-item h3 {
        font-size: 1.5rem;
    }

    /* Intro Section Mobile */
    .intro-section .text-block {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .intro-section .text-block:hover {
        transform: translateY(-5px);
    }

    .intro-section .block-icon {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
        margin: 0 auto;
    }

    .intro-section .block-content h4 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .intro-section .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 2rem;
        padding: 1.5rem;
    }

    .intro-section .floating-card {
        display: none;
    }

    .intro-section .image-stack {
        max-width: 100%;
    }

    .intro-section .overlay-badge {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }

    .core-values {
        padding: 2rem;
    }

    .core-values h3 {
        font-size: 1.5rem;
    }

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

    .value-item {
        padding: 1rem;
    }

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

    .philosophy-item {
        padding: 2rem;
    }

    .philosophy-item h3 {
        font-size: 1.5rem;
    }

    /* Mobile Timeline Styles */
    .process-steps {
        padding: 2rem 0rem;
        max-width: 100%;
    }

    .process-steps::before {
        left: 29px;
        transform: none;
    }

    .step-item {
        flex-direction: row;
        text-align: left;
        margin-bottom: 3rem;
        margin-left: 0;
        padding-left: 4rem;
    }

    .step-item:nth-child(odd),
    .step-item:nth-child(even) {
        justify-content: flex-start;
        text-align: left;
    }

    .step-number {
        position: absolute;
        left: 4px;
        transform: none;
        width: 50px;
        height: 50px;
    }

    .step-content {
        width: auto;
        max-width: none;
        flex: 1;
    }

    .step-item:nth-child(odd) .step-content,
    .step-item:nth-child(even) .step-content {
        margin-left: 0;
        margin-right: 0;
    }

    .step-content::before {
        display: none;
    }

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

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

    .market-item {
        padding: 2rem;
    }

    .market-item h3 {
        font-size: 1.5rem;
    }

    .contact-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .container {
        padding: 0 15px;
    }

    /* Mobile background adjustments - hide video, show image */
    .desktop-only {
        display: none !important;
    }

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

@media (max-width: 768px) {
    .intro-section .content-wrapper {
        flex-direction: column;
        gap: 3rem;
    }

    .intro-section .text-content,
    .intro-section .visual-content {
        width: 100%;
    }

    .intro-section .intro-header {
        margin-bottom: 2rem;
    }

    .intro-section .section-title {
        font-size: 2rem;
    }

    .intro-section .highlight-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .intro-section .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .intro-section .stat-number {
        font-size: 2rem;
    }

    .intro-section .intro-image {
        height: 250px;
    }

    .company-showcase {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .showcase-content .content-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .showcase-image .company-image {
        height: 300px;
    }
}

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

    .section-title {
        font-size: 1.8rem;
    }

    .text-content h2 {
        font-size: 2rem;
    }

    .vision-item h3,
    .philosophy-item h3,
    .market-item h3 {
        font-size: 1.3rem;
    }

    .content-card h3 {
        font-size: 1.3rem;
    }

    .process-quote {
        font-size: 1.1rem;
        padding: 1.5rem;
    }

    .step-content h4 {
        font-size: 1.1rem;
    }

    .intro-section .section-title {
        font-size: 1.8rem;
    }

    .intro-section .lead-text {
        font-size: 1rem;
    }

    .intro-section .highlight-content h4 {
        font-size: 1.1rem;
    }

    .intro-section .mission-statement {
        padding: 1.5rem;
    }

    .intro-section .mission-statement blockquote {
        font-size: 1rem;
    }
}