.about-hero {
    position: relative;
    z-index: 0;
    min-height: auto;
    padding: var(--spacing-xxl) 0 var(--spacing-xl);
    overflow: visible;
}

.about-hero__background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #e4cbad;
    z-index: -2;
}

.about-hero__background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></svg>');
    background-size: 100px 100px;
    animation: float 20s linear infinite;
}

.about-hero__background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect x="20" y="20" width="60" height="60" fill="none" stroke="rgba(255,255,255,0.02)" stroke-width="1"/></svg>');
    background-size: 150px 150px;
    animation: float 30s linear infinite reverse;
}

@keyframes float {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-100px, -100px); }
}

.about-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top right, rgba(228, 203, 173, 0.1) 0%, transparent 50%),
                radial-gradient(ellipse at bottom left, rgba(228, 203, 173, 0.1) 0%, transparent 50%);
    z-index: -1;
}

.about-hero__content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--spacing-lg);
    align-items: center;
    padding: var(--spacing-md) 0;
    overflow: visible;
}

.about-hero__text {
    color: #333333;
    animation: fadeInUp 0.8s ease-out;
}

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

.about-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    padding: 12px 28px;
    border-radius: 100px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
    border: 1px solid rgba(0, 0, 0, 0.1);
    letter-spacing: 0.05em;
    color: #333333;
}

.about-hero__badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #ffd700;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.about-hero__title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.02em;
    color: #333333;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.about-hero__subtitle {
    font-size: 1.2rem;
    line-height: 1.9;
    opacity: 0.95;
    margin-bottom: var(--spacing-md);
    max-width: 600px;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: #555555;
}

.about-hero__tags {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
}

.about-hero__tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #333333;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.about-hero__tag:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.about-hero__tag::before {
    content: '✓';
    font-size: 0.8rem;
    color: #4ade80;
}

.about-hero__actions {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
    margin-top: var(--spacing-md);
}

.about-hero__image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 1s ease-out 0.3s backwards;
    overflow: visible;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.about-hero__image-wrapper {
    position: relative;
    width: 150%;
    max-width: none;
    aspect-ratio: 16/9;
}

.about-hero__image-content {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius-xl);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: floatImage 6s ease-in-out infinite;
    display: block;
    transition: transform var(--transition-base);
}

.about-hero__image-placeholder {
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: floatImage 6s ease-in-out infinite;
}

@keyframes floatImage {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.about-hero__image-placeholder svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 0.2em;
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
}

.section-tag::before {
    content: '';
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), transparent);
}

.section-header {
    margin-bottom: var(--spacing-md);
}

.section-header--center {
    text-align: center;
}

.section-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-light);
    max-width: 600px;
    line-height: 1.7;
}

.section-header--center .section-subtitle {
    margin: 0 auto;
}

.company-intro {
    padding: var(--spacing-lg) 0 var(--spacing-xl);
    background: var(--color-white);
    position: relative;
}

.company-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(1, 117, 44, 0.2), transparent);
}

.company-intro__content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    grid-template-rows: auto auto;
    gap: var(--spacing-md);
    align-items: flex-start;
}

.company-intro__text {
    position: relative;
}

.company-intro__desc {
    font-size: 1.05rem;
    line-height: 2;
    color: var(--color-text);
    margin-bottom: var(--spacing-lg);
}

.company-intro__highlights {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.company-intro__highlight {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(1, 117, 44, 0.08), rgba(1, 117, 44, 0.04));
    padding: 12px 20px;
    border-radius: 100px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-primary);
    border: 1px solid rgba(1, 117, 44, 0.15);
    transition: all 0.3s ease;
}

.company-intro__highlight:hover {
    background: linear-gradient(135deg, rgba(1, 117, 44, 0.12), rgba(1, 117, 44, 0.08));
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(1, 117, 44, 0.15);
}

.company-intro__highlight svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.company-intro__stats {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-sm);
    margin-top: var(--spacing-lg);
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, rgba(1, 117, 44, 0.03) 0%, rgba(1, 117, 44, 0.01) 100%);
    border-radius: 16px;
    border: 1px solid rgba(1, 117, 44, 0.08);
}

.company-intro__stat {
    text-align: center;
    padding: var(--spacing-sm);
    background: var(--color-white);
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.company-intro__stat:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(1, 117, 44, 0.12);
}

.company-intro__stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 8px;
    line-height: 1.2;
    white-space: nowrap;
}

.company-intro__stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--color-text-light);
    font-weight: 500;
    white-space: nowrap;
}

.company-intro__image {
    position: relative;
    padding-top: 70px;
}

.company-intro__image-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.company-intro__image-item {
    width: 100%;
    height: 280px;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 
        0 10px 30px -5px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.company-intro__image-item:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 20px 40px -10px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(0, 0, 0, 0.05);
}

.company-intro__image-main {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(0, 0, 0, 0.05);
}

.company-intro__image-content {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.company-intro__image-placeholder {
    background: linear-gradient(135deg, #f8faf9 0%, #e8f0ec 100%);
    padding: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    color: var(--color-text-light);
}

.company-intro__image-placeholder svg {
    width: 80px;
    height: 80px;
    opacity: 0.4;
}

.company-intro__image-placeholder span {
    font-size: 1rem;
    font-weight: 500;
}

.company-intro__image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: var(--color-white);
    padding: var(--spacing-lg) var(--spacing-xl);
    border-radius: 16px;
    text-align: center;
    box-shadow: 
        0 20px 40px -10px rgba(1, 117, 44, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.company-intro__image-badge-number {
    display: block;
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

.company-intro__image-badge-text {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
}

.team {
    padding: 50px 0;
    background: #fafbfb;
}

.team__grid {
    display: grid;
    grid-template-columns: repeat(4, 280px);
    gap: 24px;
    margin-top: 40px;
    justify-content: center;
}

.team__card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid #eaeaea;
    min-width: 280px;
}

.team__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.team__card-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.team__card-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #f8faf9 0%, #eef2f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2d7d46;
}

.team__card-placeholder svg {
    width: 72px;
    height: 72px;
    opacity: 0.5;
}

.team__card-content {
    padding: 32px;
    background: #ffffff;
}

.team__card-name {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 6px;
    text-align: center;
}

.team__card-role {
    font-size: 0.95rem;
    color: #666666;
    margin-bottom: 12px;
    text-align: center;
}

.team__card-desc {
    font-size: 0.9rem;
    color: #888888;
    line-height: 1.6;
    text-align: center;
}

.culture {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(135deg, #0a3d1f 0%, var(--color-primary) 50%, var(--color-secondary) 100%);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.culture::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.culture .section-tag {
    color: rgba(255, 255, 255, 0.8);
}

.culture .section-tag::before {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.6), transparent);
}

.culture .section-title {
    color: var(--color-white);
}

.culture .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.culture__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    position: relative;
    z-index: 1;
}

.culture__main {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.culture__item {
    display: flex;
    gap: var(--spacing-lg);
    align-items: flex-start;
    padding: var(--spacing-xl);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.culture__item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(8px);
}

.culture__item-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    flex-shrink: 0;
}

.culture__item-icon svg {
    width: 28px;
    height: 28px;
}

.culture__item-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 8px;
}

.culture__item-desc {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
}

.culture__values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-content: center;
}

.culture__value {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    color: var(--color-white);
    padding: var(--spacing-xl);
    border-radius: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.culture__value:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.05);
}

.culture__value-text {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.culture__value-desc {
    font-size: 0.95rem;
    opacity: 0.9;
    font-weight: 500;
}

section.certifications {
    padding: 100px 0;
    background: #fafbfb;
}

.certifications__grid {
    display: grid;
    grid-template-columns: repeat(4, 280px);
    gap: 24px;
    margin-top: 40px;
    justify-content: center;
}

.certifications__card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid #eaeaea;
    min-width: 280px;
}

.certifications__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.certifications__card-placeholder {
    background: linear-gradient(145deg, #f8faf9 0%, #eef2f0 100%);
    height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    color: #666;
}

.certifications__card-placeholder svg {
    width: 72px;
    height: 72px;
    opacity: 0.5;
    color: #2d7d46;
}

.certifications__card-placeholder span {
    font-size: 1.15rem;
    font-weight: 600;
    color: #333;
    text-align: center;
    padding: 0 20px;
    line-height: 1.4;
}

.about-certifications {
    margin-top: var(--spacing-lg);
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    border-radius: var(--border-radius-lg);
    border: 2px solid rgba(102, 126, 234, 0.1);
    position: relative;
    overflow: hidden;
}

.about-certifications::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.03) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.about-certifications h4 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.01em;
    position: relative;
    z-index: 1;
}

.about-certifications .certifications {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
}

.trust {
    padding: var(--spacing-xxl) 0;
    background: var(--color-white);
}

.trust__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxl);
    align-items: center;
}

.trust__desc {
    font-size: 1.05rem;
    line-height: 2;
    color: var(--color-text);
    margin-bottom: var(--spacing-lg);
}

.trust__stats {
    display: flex;
    gap: var(--spacing-xxl);
    margin-top: var(--spacing-xxl);
    padding-top: var(--spacing-xxl);
    border-top: 1px solid var(--color-gray-light);
}

.trust__stat {
    text-align: left;
    position: relative;
}

.trust__stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 8px;
}

.trust__stat-label {
    font-size: 1rem;
    color: var(--color-text-light);
    font-weight: 500;
}

.trust__image-placeholder {
    background: linear-gradient(135deg, #f8faf9 0%, #e8f0ec 100%);
    padding: 120px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    color: var(--color-text-light);
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(0, 0, 0, 0.05);
}

.trust__image-placeholder svg {
    width: 80px;
    height: 80px;
    opacity: 0.4;
}

.trust__image-placeholder span {
    font-size: 1rem;
    font-weight: 500;
}

.cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #009668 0%, #007d4b 50%, #00693e 100%);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.cta-section__content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-section__title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: var(--spacing-lg);
    letter-spacing: -0.02em;
}

.cta-section__desc {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-xxl);
    line-height: 1.8;
}

.cta-section__buttons {
    display: flex;
    gap: var(--spacing-lg);
    justify-content: center;
}

.btn--large {
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
}

.btn--outline {
    background: transparent;
    border: 2px solid rgba(0, 0, 0, 0.2);
    color: #333333;
    backdrop-filter: blur(10px);
}

.btn--outline:hover {
    background: #333333;
    color: #ffffff;
    border-color: #333333;
}

.partners {
    padding: 100px 0;
    background: #f5f7f6;
}

.partners .container {
    max-width: 1320px;
}

.partners__content {
    max-width: 900px;
    margin: 0 auto;
}

.partners__text {
    text-align: center;
}

.partners__desc {
    font-size: 1.1rem;
    line-height: 2;
    color: var(--color-text);
    margin-bottom: 32px;
}

.partners__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 50px;
}

.partners__card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid #eaeaea;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 140px;
}

.partners__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.partners__card-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #666;
}

.partners__card-placeholder svg {
    width: 56px;
    height: 56px;
    opacity: 0.5;
    color: #2d7d46;
}

.partners__card-placeholder span {
    font-size: 0.95rem;
    font-weight: 500;
    color: #333;
}

@media (max-width: 1200px) {
    .about-hero__title {
        font-size: 3.2rem;
    }
    
    .company-intro__content {
        gap: 60px;
    }
}

@media (max-width: 1024px) {
    .about-hero {
        padding: 140px 0 100px;
        min-height: auto;
    }
    
    .about-hero__content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xxl);
    }
    
    .about-hero__image {
        order: -1;
    }
    
    .about-hero__image-wrapper {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .about-hero__title {
        font-size: 2.8rem;
    }
    
    .partners__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .company-intro__content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xxl);
    }
    
    .company-intro__image {
        order: -1;
    }
    
    .team__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .culture__content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xxl);
    }
    
    .culture__values {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .trust__content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xxl);
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 120px 0 80px;
    }
    
    .about-hero__content {
        text-align: center;
    }
    
    .about-hero__text {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .about-hero__title {
        font-size: 2.2rem;
    }
    
    .about-hero__subtitle {
        font-size: 1.1rem;
    }
    
    .about-hero__tags {
        flex-direction: column;
        align-items: center;
    }
    
    .about-hero__tag {
        font-size: 0.85rem;
    }
    
    .about-hero__actions {
        justify-content: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .company-intro {
        padding: 80px 0;
    }
    
    .company-intro__highlights {
        flex-direction: column;
    }
    
    .company-intro__highlight {
        justify-content: center;
    }
    
    .company-intro__stats {
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
        padding: var(--spacing-sm);
    }
    
    .company-intro__stat {
        padding: 8px;
    }
    
    .company-intro__stat-number {
        font-size: 1.1rem;
    }
    
    .company-intro__stat-label {
        font-size: 0.7rem;
    }
    
    .company-intro__image {
        padding-top: 0;
    }
    
    .company-intro__image-grid {
        flex-direction: row;
        gap: var(--spacing-sm);
    }
    
    .company-intro__image-item {
        height: 150px;
    }
    
    .team {
        padding: 40px 0;
    }
    
    .team__grid {
        grid-template-columns: 1fr;
    }
    
    .culture {
        padding: 80px 0;
    }
    
    .culture__values {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .culture__value-text {
        font-size: 1.6rem;
    }
    
    .trust {
        padding: 80px 0;
    }
    
    .trust__stats {
        flex-direction: column;
        gap: var(--spacing-lg);
    }
    
    .trust__stat-number {
        font-size: 2.5rem;
    }
    
    .cta-section {
        padding: 80px 0;
    }
    
    .cta-section__title {
        font-size: 2rem;
    }
    
    .cta-section__buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-section__buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 100px 0 60px;
    }
    
    .about-hero__title {
        font-size: 1.8rem;
    }
    
    .about-hero__badge {
        font-size: 0.85rem;
        padding: 10px 20px;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .company-intro__stats {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-md);
    }
    
    .company-intro__stat {
        padding: var(--spacing-md);
    }
    
    .company-intro__stat-number {
        font-size: 1.6rem;
    }
    
    .company-intro__image-badge {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: var(--spacing-lg);
    }
    
    .company-intro__image-badge-number {
        font-size: 2.5rem;
    }
    
    .culture__values {
        grid-template-columns: 1fr 1fr;
    }
    
    .culture__value {
        padding: var(--spacing-lg);
    }
    
    .culture__value-text {
        font-size: 1.4rem;
    }
    
    .cta-section__title {
        font-size: 1.6rem;
    }
    
    .btn--large {
        padding: 14px 28px;
        font-size: 1rem;
    }
}

/* Contact Section */
.contact-section {
    padding: 120px 0;
}

.contact-section__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.contact-section__text {
    max-width: 500px;
}

.contact-section__title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.contact-section__desc {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: var(--spacing-lg);
}

.contact-section__info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.contact-section__info-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm);
    background: var(--color-gray-lighter);
    border-radius: var(--border-radius-md);
    border: 1px solid var(--color-gray-light);
}

.contact-section__info-item svg {
    width: 24px;
    height: 24px;
    color: var(--color-primary);
    flex-shrink: 0;
}

.contact-section__info-item span {
    font-size: 1rem;
    color: var(--color-text);
}

.contact-section__form {
    background: var(--color-white);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-gray-light);
}

.contact-section__form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

.contact-section__form-group {
    margin-bottom: var(--spacing-md);
}

.contact-section__form-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: var(--spacing-xs);
}

.contact-section__form-input,
.contact-section__form-textarea {
    width: 100%;
    padding: var(--spacing-sm);
    border: 1px solid var(--color-gray-light);
    border-radius: var(--border-radius-md);
    font-size: 1rem;
    color: var(--color-text);
    transition: border-color var(--transition-base);
}

.contact-section__form-input:focus,
.contact-section__form-textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(1, 117, 44, 0.1);
}

.contact-section__form-textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-section__form-button {
    width: 100%;
    padding: var(--spacing-sm);
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    border-radius: var(--border-radius-md);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color var(--transition-base);
}

.contact-section__form-button:hover {
    background: var(--color-primary-dark);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .partners__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .certifications__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-section__content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Production Capacity Section */
.production-capacity {
    padding: 80px 0;
    background: linear-gradient(180deg, #fafbfb 0%, #ffffff 100%);
}

.production-capacity__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-bottom: 40px;
}

.production-capacity__card {
    background: #ffffff;
    padding: 40px 32px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #eaeaea;
    text-align: center;
    transition: all 0.3s ease;
}

.production-capacity__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(1, 117, 44, 0.2);
}

.production-capacity__icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 24px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(1, 117, 44, 0.08) 0%, rgba(46, 139, 87, 0.08) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    transition: all 0.3s ease;
}

.production-capacity__card:hover .production-capacity__icon {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: var(--color-white);
    transform: scale(1.05);
}

.production-capacity__icon svg {
    width: 32px;
    height: 32px;
}

.production-capacity__title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 16px;
}

.production-capacity__desc {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--color-text-light);
}

.production-capacity__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    padding: 24px;
    background: linear-gradient(135deg, rgba(1, 117, 44, 0.05) 0%, rgba(46, 139, 87, 0.05) 100%);
    border-radius: 20px;
    border: 1px solid rgba(1, 117, 44, 0.1);
}

.production-capacity__stat {
    text-align: center;
    padding: 24px;
    background: var(--color-white);
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.production-capacity__stat:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(1, 117, 44, 0.12);
}

.production-capacity__stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 8px;
    line-height: 1.2;
}

.production-capacity__stat-label {
    display: block;
    font-size: 0.95rem;
    color: var(--color-text-light);
    font-weight: 500;
}

.production-capacity__gallery {
    margin-top: 60px;
}

.production-capacity__gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.production-capability__gallery-item {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.production-capability__gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.production-capability__gallery-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.production-capability__gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.production-capability__gallery-item:hover .production-capability__gallery-img {
    transform: scale(1.05);
}

.production-capability__gallery-caption {
    padding: 16px;
    background: var(--color-white);
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text);
}

/* Design Capability Section */
.design-capability {
    padding: 0;
    background: var(--color-white);
}

.design-capability__content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 120px;
    align-items: center;
}

.design-capability__text {
    padding: 0;
}

.design-capability__desc {
    font-size: 1.05rem;
    line-height: 2;
    color: var(--color-text);
    margin-bottom: 24px;
}

.design-capability__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.design-capability__feature {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 28px;
    background: linear-gradient(135deg, rgba(1, 117, 44, 0.08) 0%, rgba(46, 139, 87, 0.08) 100%);
    border-radius: 16px;
    border: 2px solid rgba(1, 117, 44, 0.15);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-primary);
    transition: all 0.3s ease;
}

.design-capability__feature:hover {
    background: linear-gradient(135deg, rgba(1, 117, 44, 0.15) 0%, rgba(46, 139, 87, 0.15) 100%);
    transform: translateX(6px);
    box-shadow: 0 4px 16px rgba(1, 117, 44, 0.2);
}

.design-capability__feature svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.design-capability__image {
    position: relative;
}

.design-capability__image-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.design-capability__image-item {
    height: 190px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.design-capability__image-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.design-capability__image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.design-capability__image-placeholder svg {
    width: 48px;
    height: 48px;
    opacity: 0.4;
}

.design-capability__image-placeholder span {
    font-size: 0.95rem;
    font-weight: 500;
}

.design-capability__image-content {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

.design-capability__image-placeholder span {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    text-align: center;
}

/* Production Process Section */
.production-process {
    padding: 80px 0;
    background: linear-gradient(180deg, #fafbfb 0%, #ffffff 100%);
}

.production-process__flow {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.production-process__step {
    background: var(--color-white);
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #eaeaea;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.production-process__step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.production-process__step:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.production-process__step:hover::before {
    opacity: 1;
}

.production-process__step-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(1, 117, 44, 0.15);
    margin-bottom: 16px;
    line-height: 1;
}

.production-process__step-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 12px;
}

.production-process__step-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-text-light);
}

.production-process__gallery {
    margin-top: 60px;
}

.production-process__gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.production-process__gallery-item {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.production-process__gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.production-process__gallery-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.production-process__gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.production-process__gallery-item:hover .production-process__gallery-img {
    transform: scale(1.05);
}

.production-process__gallery-caption {
    padding: 16px;
    background: var(--color-white);
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text);
}

/* Quality Assurance Section */
.quality-assurance {
    padding: 80px 0;
    background: var(--color-white);
}

.quality-assurance__content {
    max-width: 900px;
    margin: 0 auto;
}

.quality-assurance__text {
    text-align: center;
}

.quality-assurance__desc {
    font-size: 1.1rem;
    line-height: 2;
    color: var(--color-text);
    margin-bottom: 32px;
}

.quality-assurance__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.quality-assurance__item {
    display: flex;
    gap: 20px;
    padding: 32px;
    background: linear-gradient(135deg, rgba(1, 117, 44, 0.03) 0%, rgba(46, 139, 87, 0.03) 100%);
    border-radius: 20px;
    border: 1px solid rgba(1, 117, 44, 0.08);
    transition: all 0.3s ease;
}

.quality-assurance__item:hover {
    background: linear-gradient(135deg, rgba(1, 117, 44, 0.06) 0%, rgba(46, 139, 87, 0.06) 100%);
    transform: translateX(8px);
}

.quality-assurance__item-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    flex-shrink: 0;
    box-shadow: 0 8px 20px -8px rgba(1, 117, 44, 0.4);
}

.quality-assurance__item-icon svg {
    width: 24px;
    height: 24px;
}

.quality-assurance__item-content h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 8px;
}

.quality-assurance__item-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-text-light);
}

.quality-assurance__image {
    margin-top: 48px;
    width: 100%;
}

.quality-assurance__img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.quality-assurance__img:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* After Sales Service Section */
.after-sales-service {
    padding: 80px 0;
    background: linear-gradient(180deg, #fafbfb 0%, #ffffff 100%);
}

.after-sales-service__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.after-sales-service__card {
    background: var(--color-white);
    padding: 40px 32px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #eaeaea;
    text-align: center;
    transition: all 0.3s ease;
}

.after-sales-service__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(1, 117, 44, 0.2);
}

.after-sales-service__card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 24px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(1, 117, 44, 0.08) 0%, rgba(46, 139, 87, 0.08) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    transition: all 0.3s ease;
}

.after-sales-service__card:hover .after-sales-service__card-icon {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: var(--color-white);
    transform: scale(1.05);
}

.after-sales-service__card-icon svg {
    width: 32px;
    height: 32px;
}

.after-sales-service__card-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 16px;
}

.after-sales-service__card-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-text-light);
}

.after-sales-service__gallery {
    margin-top: 60px;
}

.after-sales-service__gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.after-sales-service__gallery-item {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.after-sales-service__gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.after-sales-service__gallery-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.after-sales-service__gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.after-sales-service__gallery-item:hover .after-sales-service__gallery-img {
    transform: scale(1.05);
}

.after-sales-service__gallery-caption {
    padding: 16px;
    background: var(--color-white);
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text);
}

/* Export Business Section */
.export-business {
    padding: 80px 0;
    background: var(--color-white);
}

.export-business__content {
    max-width: 900px;
    margin: 0 auto;
}

.export-business__text {
    text-align: center;
}

.export-business__desc {
    font-size: 1.1rem;
    line-height: 2;
    color: var(--color-text);
    margin-bottom: 32px;
}

.export-business__highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.export-business__highlight {
    background: linear-gradient(135deg, rgba(1, 117, 44, 0.05) 0%, rgba(46, 139, 87, 0.05) 100%);
    padding: 40px 32px;
    border-radius: 20px;
    border: 1px solid rgba(1, 117, 44, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.export-business__highlight:hover {
    background: linear-gradient(135deg, rgba(1, 117, 44, 0.1) 0%, rgba(46, 139, 87, 0.1) 100%);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(1, 117, 44, 0.12);
}

.export-business__highlight-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    line-height: 1;
}

.export-business__highlight-content h4 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 8px;
    line-height: 1.2;
}

.export-business__highlight-content p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.5;
}

/* Responsive adjustments for new sections */
@media (max-width: 1024px) {
    .production-capacity__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .production-capacity__stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .design-capability__content {
        grid-template-columns: 1fr;
    }
    
    .design-capability__image {
        order: -1;
    }
    
    .design-capability__image-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .production-process__flow {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .production-process__gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .quality-assurance__list {
        grid-template-columns: 1fr;
    }
    
    .after-sales-service__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .export-business__highlights {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .production-capacity__grid {
        grid-template-columns: 1fr;
    }
    
    .production-capacity__stats {
        grid-template-columns: 1fr;
        padding: 32px;
    }
    
    .design-capability__features {
        grid-template-columns: 1fr;
    }
    
    .design-capability__image-grid {
        grid-template-columns: 1fr;
    }
    
    .production-process__flow {
        grid-template-columns: 1fr;
    }
    
    .production-process__gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .after-sales-service__grid {
        grid-template-columns: 1fr;
    }
    
    .export-business__highlights {
        grid-template-columns: 1fr;
    }
}

/* Company Gallery Section */
.company-gallery__slider {
    position: relative;
    max-width: 1200px;
    margin: 20px auto 0;
}

.company-gallery__slides {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.company-gallery__slide {
    display: none;
    animation: fadeIn 0.5s ease;
    cursor: pointer;
}

.company-gallery__slide.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.company-gallery__image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.company-gallery__caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: white;
    padding: 40px 20px 20px;
    font-size: 1.1rem;
    font-weight: 500;
}

.company-gallery__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 10;
}

.company-gallery__nav:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-50%) scale(1.1);
}

.company-gallery__nav svg {
    width: 24px;
    height: 24px;
    color: var(--color-text);
    transition: color 0.3s ease;
}

.company-gallery__nav:hover svg {
    color: var(--color-white);
}

.company-gallery__nav--prev {
    left: 20px;
}

.company-gallery__nav--next {
    right: 20px;
}

.company-gallery__dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}

.company-gallery__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--color-primary);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.company-gallery__dot:hover {
    background: var(--color-primary);
}

.company-gallery__dot.active {
    background: var(--color-primary);
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .company-gallery__image {
        height: 300px;
    }
    
    .company-gallery__caption {
        padding: 30px 15px 15px;
        font-size: 1rem;
    }
    
    .company-gallery__nav {
        width: 40px;
        height: 40px;
    }
    
    .company-gallery__nav--prev {
        left: 10px;
    }
    
    .company-gallery__nav--next {
        right: 10px;
    }
    
    .company-gallery__nav svg {
        width: 20px;
        height: 20px;
    }
    
    .company-gallery__dots {
        gap: 8px;
    }
    
    .company-gallery__dot {
        width: 10px;
        height: 10px;
    }
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: block;
}

.lightbox__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
}

.lightbox__close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.lightbox__close:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.lightbox__close svg {
    width: 24px;
    height: 24px;
    color: white;
}

.lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.lightbox__nav:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.lightbox__nav svg {
    width: 30px;
    height: 30px;
    color: white;
}

.lightbox__nav--prev {
    left: 20px;
}

.lightbox__nav--next {
    right: 20px;
}

.lightbox__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.lightbox__image {
    max-width: 100%;
    max-height: calc(100vh - 150px);
    object-fit: contain;
    display: block;
    border-radius: 8px;
}

.lightbox__title {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    text-align: left;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 10px 15px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    max-width: calc(100% - 80px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.lightbox__caption {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    text-align: center;
    color: white;
    font-size: 1rem;
    font-weight: 500;
    padding: 0 20px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    border-radius: 6px;
    margin: 0 20px;
}

@media (max-width: 768px) {
    .lightbox__content {
        padding: 20px 10px;
    }
    
    .lightbox__image {
        max-height: calc(100vh - 120px);
    }
    
    .lightbox__caption {
        font-size: 1rem;
        bottom: 20px;
        padding: 0 10px;
    }
    
    .lightbox__title {
        font-size: 0.9rem;
        top: 15px;
        left: 15px;
        right: 15px;
        padding: 8px 12px;
    }
    
    .lightbox__close {
        width: 40px;
        height: 40px;
        top: 10px;
        right: 10px;
    }
    
    .lightbox__close svg {
        width: 20px;
        height: 20px;
    }
    
    .lightbox__nav {
        width: 50px;
        height: 50px;
    }
    
    .lightbox__nav svg {
        width: 24px;
        height: 24px;
    }
    
    .lightbox__nav--prev {
        left: 10px;
    }
    
    .lightbox__nav--next {
        right: 10px;
    }
}
