.as1-about-section,
.as1-about-section * {
    box-sizing: border-box;
}

.as1-about-section {
    --as1-dot-color: #d5d5d5;
    position: relative;
    overflow: hidden;
    color: #333333;
    font-family: 'Montserrat', 'Inter', Arial, sans-serif;
}

.as1-about-section.as1-has-dots::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(var(--as1-dot-color) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
    z-index: 0;
}

.as1-about-container {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    align-items: center;
}

.as1-about-content {
    flex: 1 1 500px;
    padding-right: 20px;
}

.as1-about-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 30px;
    margin-bottom: 24px;
    letter-spacing: 1px;
    line-height: 1;
}

.as1-about-badge svg,
.as1-about-badge i {
    width: 16px;
    height: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.as1-about-heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 48px;
    line-height: 1.1;
    margin: 0 0 24px;
    font-weight: 700;
}

.as1-about-lead {
    font-size: 18px;
    line-height: 1.6;
    border-left: 3px solid #cca42b;
    padding-left: 20px;
    margin-bottom: 24px;
    font-weight: 500;
}

.as1-about-text {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.as1-about-text p {
    margin-top: 0;
    margin-bottom: 1em;
}

.as1-about-text p:last-child {
    margin-bottom: 0;
}

.as1-about-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    align-items: center;
}

.as1-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none !important;
    transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    font-size: 15px;
    cursor: pointer;
    min-height: 50px;
    border-style: solid;
    border-width: 2px;
}

.as1-btn:hover,
.as1-btn:focus {
    transform: translateY(-2px);
    text-decoration: none !important;
}

.as1-btn-primary {
    box-shadow: 0 4px 15px rgba(26, 67, 50, 0.20);
}

.as1-btn-secondary {
    background-color: transparent;
    border-width: 1px;
}

.as1-btn-secondary:hover,
.as1-btn-secondary:focus {
    background-color: rgba(26, 67, 50, 0.06);
}

.as1-btn svg,
.as1-btn i {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
}

.as1-btn-icon-circle {
    border-radius: 50%;
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.as1-btn-icon-circle svg,
.as1-btn-icon-circle i {
    width: 14px;
    height: 14px;
    color: #1a4332;
    fill: currentColor;
}

.as1-about-features {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.as1-feature-item {
    display: flex;
    align-items: center;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.25;
}

.as1-feature-icon {
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    flex: 0 0 auto;
}

.as1-feature-icon svg,
.as1-feature-icon i {
    width: 16px;
    height: 16px;
}

.as1-about-image-wrap {
    flex: 1 1 500px;
    position: relative;
    min-width: 280px;
}

.as1-about-image-wrap::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: 15px;
    bottom: 15px;
    border: 2px solid #cca42b;
    z-index: 0;
    pointer-events: none;
}

.as1-about-image-wrap img,
.as1-image-placeholder {
    width: 100%;
    display: block;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(0,0,0,0.10);
}

.as1-about-image-wrap img {
    height: auto;
    object-fit: cover;
}

.as1-image-placeholder {
    min-height: 420px;
    background: linear-gradient(135deg, #1a4332 0%, #2b6a4f 55%, #cca42b 100%);
    color: #ffffff;
    align-items: center;
    justify-content: center;
    display: flex;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.as1-about-section.as1-animate-ready .as1-about-content,
.as1-about-section.as1-animate-ready .as1-about-image-wrap {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

.as1-about-section.as1-in-view .as1-about-content,
.as1-about-section.as1-in-view .as1-about-image-wrap {
    opacity: 1;
    transform: translateY(0);
}

.as1-about-section.as1-in-view .as1-about-image-wrap {
    transition-delay: 0.12s;
}

@media (max-width: 991px) {
    .as1-about-heading {
        font-size: 36px;
    }

    .as1-about-image-wrap::before {
        display: none;
    }

    .as1-about-image-wrap img,
    .as1-image-placeholder {
        border-radius: 20px !important;
    }
}

@media (max-width: 768px) {
    .as1-about-container {
        flex-direction: column;
        align-items: stretch;
    }

    .as1-about-content {
        padding-right: 0;
    }

    .as1-about-features {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .as1-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .as1-about-heading {
        font-size: 31px;
    }

    .as1-about-lead {
        font-size: 16px;
    }

    .as1-about-features {
        grid-template-columns: 1fr;
    }
}

/* AS1 Who We Are Section */
.as1-wwa-section,
.as1-wwa-section * {
    box-sizing: border-box;
}

.as1-wwa-section {
    position: relative;
    overflow: hidden;
    color: #333333;
    font-family: 'Montserrat', 'Inter', Arial, sans-serif;
}

.as1-wwa-container {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin: 0 auto;
    align-items: center;
}

.as1-wwa-reverse .as1-wwa-container {
    flex-direction: row-reverse;
}

.as1-wwa-image-column {
    flex: 1 1 450px;
    position: relative;
    min-width: 280px;
}

.as1-wwa-image-wrapper {
    position: relative;
    z-index: 2;
}

.as1-wwa-image-wrapper img,
.as1-wwa-image-placeholder {
    width: 100%;
    display: block;
    position: relative;
    z-index: 2;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.10);
}

.as1-wwa-image-placeholder {
    min-height: 500px;
    background: linear-gradient(135deg, #1a4332 0%, #2b6a4f 55%, #cca42b 100%);
    color: #ffffff;
    align-items: center;
    justify-content: center;
    display: flex;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.as1-wwa-image-column::after {
    content: '';
    position: absolute;
    top: -15px;
    bottom: 15px;
    left: 15px;
    right: -15px;
    border: 2px solid #cca42b;
    border-radius: 20px 120px 120px 20px;
    z-index: 1;
    pointer-events: none;
}

.as1-wwa-reverse .as1-wwa-image-column::after {
    left: -15px;
    right: 15px;
}

.as1-wwa-content-column {
    flex: 1 1 500px;
    min-width: 280px;
}

.as1-wwa-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 30px;
    margin-bottom: 20px;
    letter-spacing: 1px;
    line-height: 1;
}

.as1-wwa-badge svg,
.as1-wwa-badge i {
    width: 16px;
    height: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.as1-wwa-heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 46px;
    line-height: 1.15;
    color: #1a4332;
    margin: 0 0 24px;
    font-weight: 700;
}

.as1-wwa-lead {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #4a554e;
    border-left: 3px solid #cca42b;
    padding-left: 20px;
    margin-bottom: 30px;
    font-weight: 500;
}

.as1-wwa-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 40px;
}

.as1-wwa-feature-card {
    background-color: #ffffff;
    padding: 16px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.as1-wwa-feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.07);
}

.as1-wwa-feature-card.as1-wwa-full-width {
    grid-column: 1 / -1;
}

.as1-wwa-feature-icon {
    background-color: #f7f9f6;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    color: #1a4332;
}

.as1-wwa-feature-icon svg,
.as1-wwa-feature-icon i {
    width: 20px;
    height: 20px;
}

.as1-wwa-feature-text {
    font-size: 14px;
    font-weight: 600;
    color: #1a4332;
    line-height: 1.3;
}

.as1-wwa-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.as1-wwa-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
    cursor: pointer;
    line-height: 1;
}

.as1-wwa-btn:hover,
.as1-wwa-btn:focus {
    text-decoration: none;
}

.as1-wwa-btn svg,
.as1-wwa-btn i {
    width: 18px;
    height: 18px;
}

.as1-wwa-btn-primary {
    background-color: #1a4332;
    color: #ffffff;
    border: 2px solid #1a4332;
    box-shadow: 0 4px 15px rgba(26, 67, 50, 0.20);
}

.as1-wwa-btn-primary:hover {
    filter: brightness(0.92);
    color: #ffffff;
}

.as1-wwa-btn-icon-box {
    background-color: #cca42b;
    border-radius: 4px;
    padding: 5px;
    display: inline-flex;
    margin-right: 12px;
    color: #1a4332;
}

.as1-wwa-btn-secondary {
    background-color: transparent;
    color: #1a4332;
    border: 1px solid #c2d0c6;
}

.as1-wwa-btn-secondary:hover {
    background-color: #f4f7f4;
    color: #1a4332;
}

.as1-wwa-btn-secondary .as1-wwa-btn-icon {
    margin-right: 8px;
    color: #6c8072;
}

.as1-wwa-section.as1-animate-ready .as1-wwa-image-column,
.as1-wwa-section.as1-animate-ready .as1-wwa-content-column {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

.as1-wwa-section.as1-in-view .as1-wwa-image-column,
.as1-wwa-section.as1-in-view .as1-wwa-content-column {
    opacity: 1;
    transform: translateY(0);
}

.as1-wwa-section.as1-in-view .as1-wwa-content-column {
    transition-delay: 0.12s;
}

@media (max-width: 991px) {
    .as1-wwa-container,
    .as1-wwa-reverse .as1-wwa-container {
        flex-direction: column;
        gap: 40px !important;
        align-items: stretch;
    }

    .as1-wwa-heading {
        font-size: 38px;
    }

    .as1-wwa-image-wrapper img,
    .as1-wwa-image-placeholder {
        border-radius: 20px 60px 60px 20px;
    }

    .as1-wwa-image-column::after,
    .as1-wwa-reverse .as1-wwa-image-column::after {
        border-radius: 20px 60px 60px 20px;
        top: -10px;
        bottom: 10px;
        left: 10px;
        right: -10px;
    }
}

@media (max-width: 768px) {
    .as1-wwa-features-grid {
        grid-template-columns: 1fr;
    }

    .as1-wwa-heading {
        font-size: 32px;
    }

    .as1-wwa-image-wrapper img,
    .as1-wwa-image-placeholder {
        border-radius: 20px !important;
    }

    .as1-wwa-image-column::after {
        display: none;
    }

    .as1-wwa-btn {
        width: 100%;
    }
}
