/* ============================= */
/* About Page Modern Section */
/* ============================= */

.tc-about-page-section {
    position: relative;
    padding: 120px 0;
    background:
        radial-gradient(circle at top left, rgba(160, 103, 23, 0.08), transparent 30%),
        radial-gradient(circle at bottom right, rgba(170, 178, 139, 0.18), transparent 28%),
        #ffffff;
    overflow: hidden;
}

.tc-about-page-section::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    right: -180px;
    top: 80px;
    border-radius: 50%;
    background: rgba(170, 178, 139, 0.18);
    z-index: 0;
}

.tc-about-page-section .container {
    position: relative;
    z-index: 1;
}

.tc-about-image-wrap {
    position: relative;
    padding: 22px;
}

.tc-about-image {
    position: relative;
    overflow: hidden;
    border-radius: 34px;
    box-shadow: 0 30px 70px rgba(43, 31, 18, 0.18);
}

.tc-about-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.42) 100%),
        linear-gradient(135deg, rgba(160, 103, 23, 0.18), transparent 50%);
    z-index: 1;
    pointer-events: none;
}

.tc-about-image img {
    width: 100%;
    min-height: 580px;
    object-fit: cover;
    display: block;
    transform: scale(1.02);
    transition: transform 0.7s ease;
}

.tc-about-image-wrap:hover .tc-about-image img {
    transform: scale(1.07);
}

.tc-about-badge {
    position: absolute;
    top: 48px;
    left: 0;
    z-index: 3;
    max-width: 230px;
    padding: 18px 20px;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 20px 45px rgba(43, 31, 18, 0.16);
    display: flex;
    align-items: center;
    gap: 14px;
}

.tc-about-badge span {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 50%;
    background: #a06717;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.tc-about-badge p {
    margin: 0;
    color: #2b1f12;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 800;
}

.tc-about-card {
    position: absolute;
    right: 0;
    bottom: 58px;
    z-index: 3;
    max-width: 270px;
    padding: 22px 24px;
    border-radius: 24px;
    background: linear-gradient(135deg, #a06717 0%, #7c4c10 100%);
    color: #ffffff;
    box-shadow: 0 24px 55px rgba(160, 103, 23, 0.28);
    display: flex;
    align-items: center;
    gap: 16px;
}

.tc-about-card::before {
    content: "";
    position: absolute;
    inset: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 18px;
    pointer-events: none;
}

.tc-about-card-icon {
    width: 54px;
    height: 54px;
    min-width: 54px;
    border-radius: 50%;
    background: #ffffff;
    color: #a06717;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
}

.tc-about-card h4 {
    margin: 0;
    color: #ffffff;
    font-size: 34px;
    line-height: 1;
    font-weight: 900;
}

.tc-about-card span {
    display: block;
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    line-height: 1.35;
    font-weight: 700;
}

.tc-about-content {
    padding-left: 20px;
}

.tc-about-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    padding: 9px 16px;
    border-radius: 999px;
    background: rgba(160, 103, 23, 0.09);
    color: #a06717;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.tc-about-subtitle::before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #aab28b;
    box-shadow: 0 0 0 6px rgba(170, 178, 139, 0.28);
}

.tc-about-content h2 {
    margin: 0 0 20px;
    color: #23180d;
    font-size: clamp(34px, 4.8vw, 58px);
    line-height: 1.07;
    letter-spacing: -0.045em;
    font-weight: 900;
}

.tc-about-content h2 span {
    display: block;
    color: #a06717;
}

.tc-about-content p {
    margin: 0 0 16px;
    color: #5f574c;
    font-size: 16px;
    line-height: 1.8;
}

.tc-about-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin: 30px 0;
}

.tc-about-feature {
    padding: 22px;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid rgba(160, 103, 23, 0.12);
    box-shadow: 0 16px 36px rgba(43, 31, 18, 0.07);
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.tc-about-feature:hover {
    transform: translateY(-6px);
    border-color: rgba(160, 103, 23, 0.32);
    box-shadow: 0 22px 48px rgba(43, 31, 18, 0.11);
}

.tc-feature-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 14px;
    border-radius: 50%;
    background: rgba(170, 178, 139, 0.24);
    color: #a06717;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
}

.tc-about-feature h5 {
    margin: 0 0 8px;
    color: #23180d;
    font-size: 18px;
    font-weight: 900;
}

.tc-about-feature p {
    margin: 0;
    color: #6b6258;
    font-size: 14px;
    line-height: 1.65;
}

.tc-about-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin: 32px 0;
}

.tc-stat-item {
    padding: 18px 14px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(170, 178, 139, 0.18), rgba(160, 103, 23, 0.06));
    border: 1px solid rgba(170, 178, 139, 0.32);
    text-align: center;
}

.tc-stat-item h4 {
    margin: 0 0 5px;
    color: #a06717;
    font-size: 30px;
    font-weight: 900;
}

.tc-stat-item span {
    color: #4d4235;
    font-size: 13px;
    line-height: 1.35;
    font-weight: 800;
}

.tc-about-cta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.tc-about-btn {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 24px;
    border-radius: 999px;
    background: #a06717;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 900;
    box-shadow: 0 18px 34px rgba(160, 103, 23, 0.28);
    transition: transform 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}

.tc-about-btn::before {
    content: "";
    position: absolute;
    top: -80%;
    left: -35%;
    width: 34%;
    height: 260%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.36), transparent);
    transform: rotate(24deg) translateX(-135%);
    transition: transform 0.75s ease;
}

.tc-about-btn:hover {
    transform: translateY(-3px);
    background: #7c4c10;
    color: #ffffff;
    box-shadow: 0 24px 45px rgba(160, 103, 23, 0.38);
}

.tc-about-btn:hover::before {
    transform: rotate(24deg) translateX(440%);
}

.tc-about-phone {
    color: #23180d;
    font-size: 16px;
    font-weight: 900;
    text-decoration: none;
    transition: color 0.3s ease;
}

.tc-about-phone:hover {
    color: #a06717;
}

@media (max-width: 1199px) {
    .tc-about-content {
        padding-left: 0;
    }
}

@media (max-width: 991px) {
    .tc-about-page-section {
        padding: 90px 0;
    }

    .tc-about-image img {
        min-height: 460px;
    }
}

@media (max-width: 767px) {
    .tc-about-page-section {
        padding: 70px 0;
    }

    .tc-about-image-wrap {
        padding: 0;
    }

    .tc-about-image {
        border-radius: 24px;
    }

    .tc-about-image img {
        min-height: 360px;
    }

    .tc-about-badge,
    .tc-about-card {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        max-width: 100%;
        margin-top: 16px;
    }

    .tc-about-feature-grid,
    .tc-about-stats {
        grid-template-columns: 1fr;
    }

    .tc-about-content h2 {
        font-size: 34px;
    }
}