/* ============================================
   ABOUT US SECTION MAIN
   ============================================ */
.about-us-section-main {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.about-bg-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
    pointer-events: none;
}

.circle-left {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #695a53, #f0efee);
    top: -100px;
    left: -150px;
}

.circle-right {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #f0efee, #695a53);
    bottom: -100px;
    right: -100px;
}

.about-us-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* ============================================
   MAIN ABOUT CONTENT LAYOUT
   ============================================ */
.about-content-layout {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

/* ============================================
   IMAGE COLUMN
   ============================================ */
.about-image-column {
    position: relative;
}

.about-image-frame {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.frame-decoration-top,
.frame-decoration-bottom {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 4px solid #695a53;
    z-index: 2;
}

.frame-decoration-top {
    top: 20px;
    left: 20px;
    border-right: none;
    border-bottom: none;
    border-radius: 16px 0 0 0;
}

.frame-decoration-bottom {
    bottom: 20px;
    right: 20px;
    border-left: none;
    border-top: none;
    border-radius: 0 0 16px 0;
}

.about-main-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image-frame:hover .about-main-image {
    transform: scale(1.05);
}

/* Image Badge */
.image-overlay-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 25px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 3;
}

.badge-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.badge-number {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, #695a53, #f0efee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.badge-text {
    font-size: 13px;
    color: #1a1a1a;
    font-weight: 600;
    text-align: center;
}

/* ============================================
   TEXT COLUMN
   ============================================ */
.about-text-wrapper {
    padding: 20px 0;
}

.about-section-tag {
    display: inline-block;
    background: linear-gradient(135deg, #695a53, #f0efee);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.about-section-heading {
    font-size: 38px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 20px;
}

.heading-gradient {
    background: linear-gradient(135deg, #695a53, #f0efee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-description-text {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

/* Features List */
.about-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
    display: grid;
    gap: 15px;
}

.feature-list-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-list-item:hover {
    transform: translateX(10px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon-wrapper {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #695a53, #f0efee);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 16px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(194, 194, 181, 0.3);
}

.feature-list-item span {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
}

/* Learn More Button */
.learn-more-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #695a53, #f0efee);
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(194, 194, 181, 0.3);
    transition: all 0.3s ease;
}

.learn-more-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(194, 194, 181, 0.4);
    color: #ffffff;
}

.learn-more-button i {
    transition: transform 0.3s ease;
}

.learn-more-button:hover i {
    transform: translateX(5px);
}

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */
.why-choose-section {
    margin-top: 80px;
}

.section-title-center {
    text-align: center;
    margin-bottom: 50px;
}

.why-choose-heading {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.why-choose-subtext {
    font-size: 16px;
    color: #666;
}

/* Why Choose Grid */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.choice-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.choice-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #695a53, #f0efee);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.choice-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
}

.choice-card:hover::before {
    transform: scaleX(1);
}

.card-icon-top {
    margin-bottom: 25px;
}

.icon-background {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #695a53, #f0efee);
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 36px;
    box-shadow: 0 10px 30px rgba(194, 194, 181, 0.3);
    transition: all 0.4s ease;
}

.choice-card:hover .icon-background {
    transform: rotateY(360deg);
    box-shadow: 0 15px 40px rgba(194, 194, 181, 0.4);
}

.choice-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.choice-card-description {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

.card-bottom-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(180deg, transparent, rgba(194, 194, 181, 0.05));
    transition: height 0.4s ease;
}

.choice-card:hover .card-bottom-accent {
    height: 100%;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .about-content-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-section-heading {
        font-size: 34px;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .about-us-section-main {
        padding: 60px 0;
    }

    .about-section-heading {
        font-size: 30px;
    }

    .why-choose-heading {
        font-size: 30px;
    }

    .about-content-layout {
        margin-bottom: 60px;
    }

    .why-choose-section {
        margin-top: 60px;
    }

    .section-title-center {
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .about-section-heading {
        font-size: 26px;
    }

    .about-description-text {
        font-size: 15px;
    }

    .frame-decoration-top,
    .frame-decoration-bottom {
        width: 60px;
        height: 60px;
    }

    .image-overlay-badge {
        bottom: 20px;
        left: 20px;
        padding: 15px 20px;
    }

    .badge-number {
        font-size: 28px;
    }

    .choice-card {
        padding: 30px 20px;
    }

    .icon-background {
        width: 70px;
        height: 70px;
        font-size: 32px;
    }
}