/* About Page Styles */

body {
    background: #fff;
}

/* About Page Header Override */
.header.fixed {
    z-index: 1000;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Hero Section */
.hero {
    display: flex;
    min-height: 100vh;
    padding-top: 100px;
}

.hero-image-wrapper {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.3);
    animation: heroZoomOut 3s ease-out forwards;
}

@keyframes heroZoomOut {
    0% {
        transform: scale(1.3);
    }
    100% {
        transform: scale(1);
    }
}

.hero-image-wrapper.left img {
    object-position: right center;
}

.hero-image-wrapper.right img {
    object-position: left center;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    text-align: left;
    padding: 60px 40px;
}

.hero-title {
    font-size: 90px;
    font-weight: 500;
    line-height: 1.1;
    color: #000;
}

.hero-description {
    font-size: 24px;
    line-height: 1.7;
    color: #000;
    max-width: 500px;
}

/* Our Values Section */
.values-section {
    background: #fff;
}

.values-top {
    display: flex;
    gap: 0;
    margin-bottom: 80px;
}

.values-header {
    flex: 1;
    padding: 100px;
}

.values-title {
    font-size: 100px;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #000;
}

.values-subtitle {
    font-size: 24px;
    color: #666;
    line-height: 1.6;
}

.values-image {
    flex: 1;
    overflow: hidden;
}

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

.values-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    border-top: 1px solid #eee;
    padding: 60px 100px 100px;
}

.value-item {
    position: relative;
}

.value-header {
    display: flex;
    align-items: flex-end;
    gap: 40px;
    margin-bottom: 20px;
}

.value-number {
    font-size: 40px;
    font-weight: 400;
    flex-shrink: 0;
    line-height: 1;
    position: relative;
}

.value-number .text-gray {
    color: #999;
}

.value-number .text-black {
    position: absolute;
    top: 0;
    left: 0;
    color: #000;
    clip-path: inset(0 100% 0 0);
}

.value-line-wrapper {
    position: relative;
    width: 300px;
    height: 1px;
    margin-bottom: 8px;
    margin-left: 80px;
    flex-shrink: 0;
}

.value-line-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ddd;
}

.value-line-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #000;
    transition: width 0.05s linear;
}

.value-title {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 12px;
    position: relative;
}

.value-title .text-gray {
    color: #999;
}

.value-title .text-black {
    position: absolute;
    top: 0;
    left: 0;
    color: #000;
    clip-path: inset(0 100% 0 0);
}

.value-description {
    font-size: 18px;
    line-height: 1.7;
    position: relative;
}

.value-description .text-gray {
    color: #999;
}

.value-description .text-black {
    position: absolute;
    top: 0;
    left: 0;
    color: #666;
    clip-path: inset(0 100% 0 0);
}

/* Our Process Section */
.process-section {
    position: relative;
    background: #f5f5f5;
    min-height: 700px;
    display: flex;
    padding: 160px 0;
}

.process-content {
    width: 35%;
    padding: 0 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.process-title {
    font-size: 100px;
    font-weight: 400;
    line-height: 1.1;
    color: #000;
    margin-bottom: 20px;
}

.process-subtitle {
    font-size: 24px;
    color: #666;
}

.process-slider-container {
    width: 65%;
    overflow: hidden;
    position: relative;
}

.process-slider {
    display: flex;
    height: 100%;
    padding: 20px 0;
    user-select: none;
    width: max-content;
    animation: processScroll 25s linear infinite;
}

@keyframes processScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-300px * 6 - 5px * 6));
    }
}

.process-slide {
    flex: 0 0 300px;
    height: calc(100% - 40px);
    position: relative;
    margin-right: 5px;
    overflow: hidden;
    flex-shrink: 0;
}

.process-slide img,
.process-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    -webkit-user-drag: none;
    user-select: none;
}

/* Map Section */
.map-section {
    padding: 80px 100px;
    background: #fff;
}

.map-container {
    width: 100%;
    margin-bottom: 40px;
    overflow: hidden;
}

.map-container iframe {
    display: block;
}

.contact-info {
    display: flex;
    flex-direction: column;
    padding: 0 20px;
}

.contact-row {
    display: flex;
    align-items: center;
    font-size: 16px;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.contact-label {
    font-weight: 400;
    font-size: 20px;
    color: #000;
    width: 240px;
}

.contact-value {
    color: #333;
    font-size: 20px;
}

/* Responsive */
@media (max-width: 1200px) {
    .hero {
        flex-direction: column;
        padding: 120px 50px 60px;
        gap: 30px;
    }
    .hero-image-wrapper {
        width: 100%;
        max-height: 300px;
    }
    .values-header {
        padding: 80px 50px;
    }
    .values-top {
        flex-direction: column;
    }
    .values-image {
        max-height: 300px;
    }
    .values-title,
    .process-title {
        font-size: 72px;
    }
    .values-grid {
        padding: 60px 50px 80px;
    }
    .process-section {
        flex-direction: column;
    }
    .process-content {
        width: 100%;
        padding: 60px 50px;
    }
    .process-slider-container {
        width: 100%;
        height: 400px;
    }
    .map-section {
        padding: 60px 50px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 100px 24px 40px;
    }
    .hero-title {
        font-size: 48px;
    }
    .hero-description {
        font-size: 18px;
    }
    .values-header {
        padding: 60px 24px;
    }
    .values-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 24px 60px;
    }
    .values-title,
    .process-title {
        font-size: 48px;
    }
    .values-subtitle,
    .process-subtitle {
        font-size: 18px;
    }
    .value-number {
        font-size: 28px;
    }
    .value-title {
        font-size: 18px;
    }
    .value-description {
        font-size: 14px;
    }
    .process-content {
        padding: 40px 24px;
    }
    .map-section {
        padding: 40px 24px;
    }
    .map-container iframe {
        height: 350px;
    }
    .contact-label,
    .contact-value {
        font-size: 16px;
    }
    .contact-label {
        width: 140px;
    }
}
