/* ============================================
   About Us Section — Clean Split Layout with Palm Watermark
   ============================================ */

.about-section {
    position: relative;
    padding: var(--space-section) 0;
    background-color: var(--color-white);
    overflow: hidden;
}

.about-palm-bg {
    position: absolute;
    top: 10%;
    right: -50px;
    width: 380px;
    height: 450px;
    opacity: 0.05;
    pointer-events: none;
    z-index: 1;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 400' fill='%23000000'%3E%3Cpath d='M0 100 Q 80 80 160 20 C 120 60 70 90 0 100 Z M0 180 Q 90 160 180 110 C 130 150 70 170 0 180 Z M0 240 Q 100 230 190 200 C 130 230 70 240 0 240 Z M0 300 Q 90 300 170 300 C 120 310 60 300 0 300 Z M0 360 Q 80 370 150 390 C 100 380 50 370 0 360 Z'/%3E%3C/svg%3E");
}

.about-section .container {
    position: relative;
    z-index: 2;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: var(--space-3xl);
    align-items: center;
}

/* Left: Image */
.about-image-wrapper {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
}

.about-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 420px;
    display: block;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.about-image-wrapper:hover img {
    transform: scale(1.04);
}

.about-image-logo {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    padding: 10px 18px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(6px);
    transition: transform var(--transition-base);
}

.about-image-wrapper:hover .about-image-logo {
    transform: translateY(-4px);
}

.about-image-logo img {
    height: 55px;
    width: auto;
    min-height: unset;
}

/* Right: Content */
.about-content {
    padding-left: var(--space-md);
}

.about-content .section-tag {
    margin-bottom: var(--space-xs);
}

.about-content .section-heading.about-heading {
    font-family: var(--font-heading);
    font-size: 2.35rem;
    font-weight: 700;
    line-height: 1.22;
    margin-bottom: var(--space-md);
    color: #111111;
}

.about-lead {
    font-size: 0.96rem;
    color: #555555;
    margin-bottom: var(--space-lg);
    line-height: 1.7;
}

.about-features {
    margin-bottom: var(--space-xl);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.94rem;
    font-weight: 500;
    color: #333333;
    transition: transform var(--transition-fast);
}

.about-features li:hover {
    transform: translateX(6px);
}

.feature-check-icon {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    background-color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    flex-shrink: 0;
    box-shadow: 0 3px 8px rgba(243, 112, 33, 0.3);
}

.feature-check-icon svg {
    width: 15px;
    height: 15px;
}

.about-cta .btn {
    padding: 13px 30px;
    font-size: 0.85rem;
    border-radius: 4px;
    letter-spacing: 0.8px;
}
