/* Base styles */
:root {
    --primary-color: #00B96B;
    --secondary-color: #4A90E2;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-400: #9CA3AF;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: rgba(0, 0, 0, 0.1);
}

/* Remove redundant resets that are handled by normalize.css */
html {
    overflow-x: hidden;
    font-size: 16px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: white;
    overflow-x: hidden;
    position: relative;
    width: 100%;
}

/* Remove number input spinners */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
*{
    box-sizing: border-box;
}

/* Container */
.container {
    width: 100%;
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 48rem) {
    .container {
        padding: 0 1.5rem;
    }
}
header,main,footer{
    width: 100%;
}
/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--glass-bg);
    backdrop-filter: blur(0.625rem);
    -webkit-backdrop-filter: blur(0.625rem);
    border-bottom: 0.0625rem solid var(--glass-border);
    box-shadow: 0 0.25rem 0.375rem var(--glass-shadow);
    z-index: 50;
}

nav {
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.logo {
    font-size: 1.5rem;
    font-family: 'Pacifico', cursive;
    color: var(--primary-color);
    text-decoration: none;
}

.mobile-menu-button {
    display: none;
    color: var(--gray-700);
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-button:hover {
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--gray-700);
    text-decoration: none;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 0.5rem 1.5rem;
    border-radius: 0.25rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    border: none;
}

.btn-primary:hover {
    background-color: rgba(0, 185, 107, 0.9);
}

.btn-outline {
    color: var(--primary-color);
    border: 0.0625rem solid var(--primary-color);
    background: none;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Hero Section */
.hero-bg {
    width: 100%;
    position: relative;
    padding: 12rem 0;
}

.hero-content {
    max-width: 32rem;
    background: var(--glass-bg);
    backdrop-filter: blur(0.625rem);
    -webkit-backdrop-filter: blur(0.625rem);
    overflow: hidden;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 0.25rem 0.375rem var(--glass-shadow);
}

.hero-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--gray-800);
    margin-bottom: 1.5rem;
    margin-top: 0;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 8rem;
    background: linear-gradient(to top, white, transparent);
}

/* Stats Section */
.stats-section {
    padding: 4rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.25rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--gray-600);
}

/* Features Section */
.features-section {
    background-color: var(--gray-50);
    padding: 4rem 0;
}

.section-title {
    font-size: 1.875rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}

.feature-card {
    background: var(--glass-bg);
    backdrop-filter: blur(0.625rem);
    -webkit-backdrop-filter: blur(0.625rem);
    border: 0.0625rem solid var(--glass-border);
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: 0 0.25rem 0.375rem var(--glass-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-0.3125rem);
    box-shadow: 0 0.5rem 0.75rem var(--glass-shadow);
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    background-color: rgba(0, 185, 107, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.feature-icon.secondary {
    background-color: rgba(74, 144, 226, 0.1);
}

.feature-icon i {
    font-size: 1.25rem;
}

.feature-icon i.primary {
    color: var(--primary-color);
}

.feature-icon i.secondary {
    color: var(--secondary-color);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.75rem;
}

.feature-description {
    color: var(--gray-600);
}

/* Solutions Section */
.solutions-section {
    padding: 4rem 0;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}

.solution-card {
    position: relative;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 0.25rem 0.375rem var(--glass-shadow);
}

.solution-image {
    width: 100%;
    height: 18.75rem;
    object-fit: cover;
    transition: transform 0.3s;
}

.solution-card:hover .solution-image {
    transform: scale(1.05);
}

.solution-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(0.625rem);
    -webkit-backdrop-filter: blur(0.625rem);
    border-top: 0.0625rem solid var(--glass-border);
}

.solution-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 0.5rem;
}

.solution-description {
    color: rgba(255, 255, 255, 0.8);
}

/* Customers Section */
.customers-section {
    background-color: var(--gray-50);
    padding: 4rem 0;
}

.customers-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
}

.customer-card {
    background: var(--glass-bg);
    backdrop-filter: blur(0.625rem);
    -webkit-backdrop-filter: blur(0.625rem);
    border: 0.0625rem solid var(--glass-border);
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 0.25rem 0.375rem var(--glass-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 0;
    position: relative;
    display: flex;
    flex-direction: column;
}

.customer-card:hover {
    transform: translateY(-0.3125rem);
    box-shadow: 0 0.5rem 0.75rem var(--glass-shadow);
}

.customer-image {
    width: 100%;
    height: 12.5rem;
    object-fit: cover;
    border-radius: 0.5rem 0.5rem 0 0;
    margin-bottom: 0;
    transition: transform 0.3s ease;
}

.customer-card:hover .customer-image {
    transform: scale(1.05);
}

.customer-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 0.75rem;
    position: relative;
    padding: 1.5rem 1.5rem 0.5rem;
}

.customer-name::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1.5rem;
    width: 2rem;
    height: 0.125rem;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.customer-card:hover .customer-name::after {
    width: 3rem;
}

.customer-description {
    color: var(--gray-600);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-top: 0.5rem;
    padding: 0 1.5rem 1.5rem;
    flex: 1;
}

/* Partners Section */
.partners-section {
    padding: 4rem 0;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.partner-item {
    height: 5rem;
    background-color: var(--gray-50);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-name {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--gray-400);
}

/* Resources Section */
.resources-section {
    background-color: var(--gray-50);
    padding: 4rem 0;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}

.resource-card {
    background: var(--glass-bg);
    backdrop-filter: blur(0.625rem);
    -webkit-backdrop-filter: blur(0.625rem);
    border: 0.0625rem solid var(--glass-border);
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: 0 0.25rem 0.375rem var(--glass-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-0.3125rem);
    box-shadow: 0 0.5rem 0.75rem var(--glass-shadow);
}

.resource-icon {
    width: 3rem;
    height: 3rem;
    background-color: rgba(0, 185, 107, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.resource-icon.secondary {
    background-color: rgba(74, 144, 226, 0.1);
}

.resource-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.75rem;
}

.resource-description {
    color: var(--gray-600);
    margin-bottom: 1rem;
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 3.75rem 0 1.875rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-column h3 {
    margin-bottom: 1.25rem;
    color: #fff;
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 0.625rem;
}

.footer-links a,
.footer-contact li {
    color: #999;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.875rem;
    border-top: 0.0625rem solid #333;
}

.footer-copyright {
    color: #999;
}

.footer-social {
    display: flex;
    gap: 1.25rem;
}

.footer-social a {
    color: #999;
    font-size: 1.25rem;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: #fff;
}

/* Responsive Footer Styles */
@media (max-width: 48rem) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        text-align: center;
        gap: 1.875rem;
    }

    .footer-column {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-links,
    .footer-contact {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.25rem;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 30rem) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-column {
        margin-bottom: 1.875rem;
    }

    .footer-column:last-child {
        margin-bottom: 0;
    }
}

/* Responsive Design */
@media (min-width: 40rem) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .customers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 48rem) {
    .mobile-menu-button {
        display: none;
    }

    .nav-menu {
        display: flex;
    }

    .hero-title {
        font-size: 3rem;
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .customers-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .partners-grid {
        grid-template-columns: repeat(6, 1fr);
    }

    .resources-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 47.9375rem) {
    .mobile-menu-button {
        display: block;
    }
    header{
        background: white;
    }
    .nav-menu {
        position: fixed;
        top: 4rem;
        left: 0;
        right: 0;
        background: white;
        padding: 1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        transform: translateY(-10%);
        opacity: 0;
        visibility: hidden;
        
        box-shadow: 0 0.25rem 0.375rem var(--glass-shadow);
        z-index: 0;
    }
    .nav-menu.active {
        transition: all 0.3s ease-in-out;
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }
    .nav-buttons {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }
}

/* Page Header */
.page-header {
    background-color: var(--gray-50);
    padding: 8rem 0 4rem;
    text-align: center;
}

.page-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--gray-800);
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
}

/* News Section */
.news-section {
    padding: 4rem 0;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.news-card {
    background: var(--glass-bg);
    backdrop-filter: blur(0.625rem);
    -webkit-backdrop-filter: blur(0.625rem);
    border: 0.0625rem solid var(--glass-border);
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 0.25rem 0.375rem var(--glass-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
    transform: translateY(-0.3125rem);
    box-shadow: 0 0.5rem 0.75rem var(--glass-shadow);
}

.news-image {
    width: 100%;
    height: 22.5rem;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-content {
    padding: 1.5rem;
}

.news-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--gray-600);
    font-size: 0.875rem;
}

.news-category {
    color: var(--primary-color);
}

.news-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--gray-800);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.news-excerpt {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.news-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.news-link:hover {
    text-decoration: underline;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    height: 2.5rem;
    padding: 0 0.75rem;
    border-radius: 0.25rem;
    color: var(--gray-600);
    text-decoration: none;
    transition: all 0.3s ease;
}

.pagination a:hover {
    background-color: var(--gray-100);
    color: var(--primary-color);
}

.pagination a.active {
    background-color: var(--primary-color);
    color: white;
}
.pagination a.prev,
.pagination a.next {
    gap: 0.5rem;
}

/* Responsive News Grid */
@media (min-width: 48rem) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 64rem) {
    .news-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Cases Filter */
.cases-filter {
    padding: 2rem 0;
    background-color: var(--gray-50);
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.5rem 1.5rem;
    border: 0.0625rem solid var(--gray-200);
    border-radius: 2rem;
    background: none;
    color: var(--gray-600);
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.filter-btn.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

/* Cases Section */
.cases-section {
    padding: 4rem 0;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.case-card {
    background: var(--glass-bg);
    backdrop-filter: blur(0.625rem);
    -webkit-backdrop-filter: blur(0.625rem);
    border: 0.0625rem solid var(--glass-border);
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 0.25rem 0.375rem var(--glass-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.case-card:hover {
    transform: translateY(-0.3125rem);
    box-shadow: 0 0.5rem 0.75rem var(--glass-shadow);
}

.case-image {
    width: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.case-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-card:hover .case-image {
    transform: scale(1.05);
}

.case-content {
    padding: 1.5rem;
}

.case-meta {
    margin-bottom: 1rem;
}

.case-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: rgba(0, 185, 107, 0.1);
    color: var(--primary-color);
    border-radius: 1rem;
    font-size: 0.875rem;
}

.case-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--gray-800);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.case-description {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.case-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.case-link:hover {
    text-decoration: underline;
}

/* Responsive Cases Grid */
@media (min-width: 48rem) {
    .cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 64rem) {
    .cases-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Contact Page Styles */
.contact-info-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.875rem;
    margin-top: 2.5rem;
}

.contact-card {
    background: #fff;
    padding: 1.875rem;
    border-radius: 0.625rem;
    text-align: center;
    box-shadow: 0 0.3125rem 0.9375rem rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-0.3125rem);
}

.contact-icon {
    width: 3.75rem;
    height: 3.75rem;
    margin: 0 auto 1.25rem;
    background: #f0f4ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon i {
    font-size: 1.5rem;
    color: #4a6cf7;
}

.contact-card h3 {
    margin-bottom: 3.3125rem;
    color: #2b3674;
}

.contact-card p {
    color: #707ea3;
    margin: 0.3125rem 0;
}

.contact-form-section {
    padding: 5rem 0;
}

.contact-form-container {
    max-width: 37.5rem;
    margin: 0 auto;
    background: #fff;
    padding: 2.5rem;
    border-radius: 0.625rem;
    box-shadow: 0 0.3125rem 0.9375rem rgba(0, 185, 108, 0.25);
}

.contact-form-container h2 {
    text-align: center;
    margin-bottom: 1.875rem;
    color: #2b3674;
}

.contact-form .form-group {
    margin-bottom: 1.25rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2b3674;
    font-weight: 500;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 0.0625rem solid #e0e5f2;
    border-radius: 0.3125rem;
    font-size: 0.875rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #4a6cf7;
    outline: none;
}

.contact-form textarea {
    resize: vertical;
    min-height: 7.5rem;
}

.contact-form button {
    width: 100%;
    padding: 0.75rem;
    font-size: 1rem;
}


/* Responsive Styles for Contact Page */
@media (max-width: 48rem) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .contact-form-container {
        padding: 1.875rem 1.25rem;
    }

    .map-container {
        height: 18.75rem;
    }
}

/* About Page Styles */
.about-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
    color: #333;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.25rem;
}

.about-image img {
    width: 100%;
    border-radius: 0.625rem;
    box-shadow: 0 0.625rem 1.875rem rgba(0, 0, 0, 0.1);
}

/* Values Section */
.values-section {
    padding: 5rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.875rem;
    margin-top: 2.5rem;
}

.value-card {
    text-align: center;
    padding: 1.875rem;
    background: #fff;
    border-radius: 0.625rem;
    box-shadow: 0 0.3125rem 0.9375rem rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-0.625rem);
}

.value-icon {
    width: 5rem;
    height: 5rem;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 50%;
}

.value-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10.3125rem;
    color: #333;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

/* Team Section */
.team-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.875rem;
    margin-top: 2.5rem;
}

.team-card {
    background: #fff;
    border-radius: 0.625rem;
    overflow: hidden;
    box-shadow: 0 0.3125rem 0.9375rem rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-0.625rem);
}

.team-image {
    width: 100%;
    height: 18.75rem;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-card h3 {
    font-size: 1.5rem;
    margin: 1.25rem 0 0.3125rem;
    padding: 0 1.25rem;
    color: #333;
}

.team-position {
    color: var(--primary-color);
    font-weight: 500;
    padding: 0 1.25rem;
    margin-bottom: 0.625rem;
}

.team-description {
    color: #666;
    line-height: 1.6;
    padding: 0 1.25rem 1.25rem;
}

/* History Section */
.history-section {
    padding: 5rem 0;
    background: #f8f9fa;
    overflow: hidden; /* 防止横向滚动 */
}

.history-timeline {
    position: relative;
    max-width: 75rem;
    margin: 0 auto;
    padding: 2.5rem 0;
}

.history-timeline::before {
    content: '';
    position: absolute;
    width: 0.125rem;
    background: var(--primary-color);
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 1.875rem;
    width: 50%;
}

.timeline-item:nth-child(odd) {
    left: 0;
    padding-right: 2.5rem;
}

.timeline-item:nth-child(even) {
    left: 50%;
    padding-left: 2.5rem;
}

.timeline-year {
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background: var(--primary-color);
    border: 0.1875rem solid #fff;
    box-shadow: 0 0 0 0.1875rem var(--primary-color);
    position: absolute;
    top: 1.25rem;
    z-index: 1;
    animation: pulse 2s infinite;
}

.timeline-item:nth-child(odd) .timeline-year {
    right: -0.5rem;
}

.timeline-item:nth-child(even) .timeline-year {
    left: -0.5rem;
}

.timeline-content {
    background: #fff;
    padding: 1.25rem 1.875rem;
    border-radius: 0.5rem;
    box-shadow: 0 0.1875rem 0.625rem rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-0.3125rem);
    box-shadow: 0 0.3125rem 0.9375rem rgba(0, 0, 0, 0.2);
}

.timeline-item:nth-child(odd) .timeline-content {
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
    text-align: left;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    content: '';
    position: absolute;
    right: -0.9375rem;
    top: 0.75rem;
    width: 0;
    height: 0;
    border-top: 0.9375rem solid transparent;
    border-bottom: 0.9375rem solid transparent;
    border-left: 0.9375rem solid #fff;
}

.timeline-item:nth-child(even) .timeline-content::before {
    content: '';
    position: absolute;
    left: -0.9375rem;
    top: 0.75rem;
    width: 0;
    height: 0;
    border-top: 0.9375rem solid transparent;
    border-bottom: 0.9375rem solid transparent;
    border-right: 0.9375rem solid #fff;
}

.timeline-content h3 {
    margin: 0 0 0.625rem 0;
    font-size: 1.4rem;
    color: var(--primary-color);
}

.timeline-content p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-600);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 185, 107, 0.4);
    }
    50% {
        box-shadow: 0 0 0 0.5rem rgba(0, 185, 107, 0.2);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 185, 107, 0.4);
    }
}

/* 移动端适配 */
@media (max-width: 64rem) {
    .history-timeline::before {
        left: 1.25rem;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 2.5rem;
        padding-right: 0;
        margin-bottom: 2.5rem;
    }
    
    .timeline-item:nth-child(even) {
        left: 0;
        padding-right: 2.5rem;
    }
    
    .timeline-year {
        left: 0.75rem !important;
        right: auto !important;
    }
    
    .timeline-content {
        text-align: left !important;
        margin-left: 0;
        width: calc(100% - 1.25rem); /* 防止内容溢出 */
        left: 2.25rem;
    }
    
    .timeline-content::before {
        left: -0.625rem !important;
        right: auto !important;
        border-right: 0.625rem solid #fff !important;
        border-left: none !important;
    }

    .timeline-content h3 {
        font-size: 1.2rem;
    }

    .timeline-content p {
        font-size: 0.9rem;
    }
}

/* 小屏幕手机适配 */
@media (max-width: 48rem) {
    .history-timeline {
        padding: 1.25rem 0;
    }

    .timeline-item {
        padding-left: 1.875rem;
        margin-bottom: 1.875rem;
    }

    .timeline-content::before {
        left: -0.75rem !important;
        border-right: 0.75rem solid #fff !important;
    }
}

/* Responsive Styles */
@media (max-width: 64rem) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .values-grid,
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .timeline-item {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .timeline-year {
        text-align: left;
    }
    .timeline-year::after {
        left: 20.0625rem;
        right: auto;
    }

    .timeline-item:nth-child(even) .timeline-year::after {
        left: 20.0625rem;
    }
}

@media (max-width: 48rem) {
    .values-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .about-content h2 {
        font-size: 2rem;
    }

    .team-image {
        height: 15.625rem;
    }
}

/* Enterprise Environment Section */
.environment-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.environment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.environment-item {
    position: relative;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.environment-item:hover {
    transform: translateY(-0.3125rem);
}

.environment-item img {
    width: 100%;
    height: 15.625rem;
    object-fit: cover;
    display: block;
}

.environment-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 1.25rem;
    color: white;
}

.environment-overlay h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

/* Responsive styles for environment section */
@media (max-width: 64rem) {
    .environment-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 48rem) {
    .environment-grid {
        grid-template-columns: 1fr;
    }
    
    .environment-item img {
        height: 12.5rem;
    }
}

/* Company Location Section */
.location-section {
    padding: 5rem 0;
    background-color: #fff;
}

.location-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-top: 2.5rem;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 1.875rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.25rem;
    background: #f8f9fa;
    border-radius: 0.625rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-item:hover {
    transform: translateY(-0.3125rem);
    box-shadow: 0 0.3125rem 0.9375rem rgba(0, 0, 0, 0.1);
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    background: rgba(0, 185, 107, 0.1);
    padding: 0.9375rem;
    border-radius: 50%;
}

.info-content h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
    color: var(--gray-800);
}

.info-content p {
    margin: 0;
    color: var(--gray-600);
    line-height: 1.6;
}

.location-map {
    position: relative;
    border-radius: 0.625rem;
    overflow: hidden;
    box-shadow: 0 0.3125rem 0.9375rem rgba(0, 0, 0, 0.1);
}

.location-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.map-overlay {
    position: absolute;
    bottom: 1.25rem;
    right: 1.25rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.625rem 1.25rem;
    border-radius: 1.875rem;
    box-shadow: 0 0.125rem 0.625rem rgba(0, 0, 0, 0.1);
}

.btn-directions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.btn-directions:hover {
    color: var(--gray-800);
}

.btn-directions i {
    font-size: 1.125rem;
}

/* Responsive styles for location section */
@media (max-width: 64rem) {
    .location-container {
        grid-template-columns: 1fr;
    }

    .location-map {
        height: 25rem;
    }
}

@media (max-width: 48rem) {
    .info-item {
        padding: 0.9375rem;
    }

    .info-item i {
        font-size: 1.25rem;
        padding: 0.75rem;
    }

    .info-content h3 {
        font-size: 1.1rem;
    }

    .location-map {
        height: 18.75rem;
    }
}

/* AOS Animation Fixes */
[data-aos="fade-left"],
[data-aos="fade-right"],
[data-aos="fade-up"],
[data-aos="fade-down"],
[data-aos="zoom-in"],
[data-aos="zoom-out"] {
    transform: none !important;
    opacity: 1 !important;
    transition: transform 0.8s ease, opacity 0.8s ease !important;
}

[data-aos="fade-left"] {
    transform: translateX(-6.25rem) !important;
}

[data-aos="fade-right"] {
    transform: translateX(6.25rem) !important;
}

[data-aos="fade-up"] {
    transform: translateY(6.25rem) !important;
}

[data-aos="fade-down"] {
    transform: translateY(-6.25rem) !important;
}

[data-aos="zoom-in"] {
    transform: scale(0.9) !important;
}

[data-aos="zoom-out"] {
    transform: scale(1.1) !important;
}

[data-aos].aos-animate {
    transform: translate(0) scale(1) !important;
    opacity: 1 !important;
}

/* Location Section Animation Fixes */
.location-info .info-item {
    transform: none;
    opacity: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease !important;
}

.location-info .info-item[data-aos="zoom-in"] {
    transform: scale(0.9);
    opacity: 0;
}

.location-info .info-item[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
    opacity: 1;
}

.location-map[data-aos="fade-left"] {
    transform: translateX(3.125rem);
    opacity: 0;
}

.location-map[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
    opacity: 1;
}

@media (max-width: 64rem) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .values-grid,
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .timeline-item {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .timeline-year {
        text-align: left;
    }
    .timeline-year::after {
        left: 1.3125rem;
        right: auto;
    }

    .timeline-item:nth-child(even) .timeline-year::after {
        left: 1.3125rem;
    }
}

@media (max-width: 48rem) {
    .values-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
} 