/* About Page Styles */
.about-hero {
    height: 100vh;
    /* Fallback */
    height: 100svh;
    /* Mobile modern */
    position: relative;
    overflow: hidden;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -76px;
    padding-top: 76px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    /* Dark overlay for text contrast */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

.hero-subtitle {
    font-size: 1.8rem;
    color: #2563eb;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.2s;
}

/* Company Story Section */
.company-story {
    padding: 8rem 2rem;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.story-content {
    opacity: 0;
    transform: translateX(-30px);
}

.story-content.animate {
    animation: slideInLeft 1s ease forwards;
}

.story-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    opacity: 0;
    transform: translateX(30px);
}

.story-image.animate {
    animation: slideInRight 1s ease forwards;
}

.story-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    transition: transform 0.5s ease;
}

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

.story-title {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 2rem;
}

.story-text {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Values Section */
.our-values {
    padding: 8rem 2rem;
    background: #f8fafc;
    position: relative;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.value-item.animate {
    animation: fadeInUp 1s ease forwards;
}

.value-icon {
    font-size: 3rem;
    color: #3498db;
    margin-bottom: 2rem;
    transition: all 0.5s ease;
}

.value-title {
    font-size: 1.8rem;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.value-text {
    color: #475569;
    line-height: 1.8;
}

.value-item:hover {
    transform: translateY(-10px);
    border-color: #3498db;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.value-item:hover .value-icon {
    transform: scale(1.1);
    color: #2ecc71;
}

/* Location Section */
.location {
    padding: 8rem 2rem;
    background: #ffffff;
    position: relative;
}

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

.location-title {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
}

.location-title.animate {
    animation: fadeInUp 1s ease forwards;
}

.location-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.location-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 3rem 2rem;
    opacity: 0;
    transform: translateY(30px);
}

.location-card.animate {
    animation: fadeInUp 1s ease forwards;
}

.location-icon {
    font-size: 3rem;
    color: #3498db;
    margin-bottom: 2rem;
}

.location-name {
    font-size: 1.8rem;
    color: #1e293b;
    margin-bottom: 1rem;
}

.location-address {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.location-contact {
    color: #3498db;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.location-contact:hover {
    color: #2ecc71;
    transform: translateY(-2px);
}

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

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

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

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

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

/* Responsive Design */
@media screen and (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }

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

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

    .story-image {
        order: -1;
    }

    .story-title {
        font-size: 2rem;
    }
}

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

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

    .value-item {
        padding: 2rem 1.5rem;
    }

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