@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800&display=swap');

.about-portfolio-section,
.about-portfolio-section *,
.about-section-block,
.about-section-block * {
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.about-portfolio-section {
    width: 100%;
    min-height: calc(100vh - 120px);
    padding: 34px 0 70px;
    background:
        radial-gradient(circle at top left, rgba(255, 214, 153, 0.48), transparent 34%),
        linear-gradient(135deg, #fffdf9 0%, #fff3e4 45%, #ffe5c8 100%);
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(176, 102, 0, 0.08);
    box-shadow: 0 18px 55px rgba(120, 72, 8, 0.08);
}

.about-hero-upgraded::before,
.about-hero-upgraded::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(20px);
    pointer-events: none;
}

.about-hero-upgraded::before {
    width: 220px;
    height: 220px;
    top: -60px;
    right: -40px;
    background: rgba(255, 182, 75, 0.18);
}

.about-hero-upgraded::after {
    width: 170px;
    height: 170px;
    bottom: 24px;
    left: -50px;
    background: rgba(109, 67, 0, 0.08);
}

.about-main-container,
.about-section-block .container {
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto;
}

.about-main-container {
    min-height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 42px;
    padding: 12px 0;
    position: relative;
    z-index: 1;
}

.about-image {
    width: 47%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image img {
    width: 100%;
    max-width: 560px;
    min-height: 520px;
    max-height: 640px;
    border-radius: 28px;
    box-shadow: 0 24px 60px rgba(109, 67, 0, 0.14);
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.75);
}

.about-image-placeholder {
    width: 100%;
    max-width: 560px;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.72);
    border: 2px dashed rgba(109, 67, 0, 0.22);
    color: rgb(109, 67, 0);
    font-size: 22px;
    font-weight: 600;
}

.about-content {
    color: #111;
    width: 46%;
    min-height: 100px;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid rgba(109, 67, 0, 0.12);
    color: rgb(109, 67, 0);
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 12px 24px rgba(109, 67, 0, 0.06);
}

.about-small-title {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(109, 67, 0, 0.08);
    color: rgb(109, 67, 0);
    font-size: 14px;
    font-weight: 600;
}

.about-content h1 {
    font-size: clamp(2.2rem, 2rem + 2vw, 4rem);
    line-height: 1.1;
    margin: 0 0 16px;
    font-weight: 800;
    color: #1c140b;
}

.about-typewriter {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: clamp(1.1rem, 1rem + 1.8vw, 2rem);
    margin-bottom: 18px;
}

.about-typewriter-label {
    color: #111;
}

.about-typewriter-text {
    color: rgb(109, 67, 0);
    text-shadow: 0 0 5px rgba(109, 67, 0, 0.18);
    position: relative;
    min-width: 140px;
}

.about-typewriter-text::after {
    content: "";
    position: absolute;
    right: -8px;
    top: 4px;
    width: 2px;
    height: calc(100% - 8px);
    background: #111;
    animation: aboutCursor 0.7s linear infinite;
}

@keyframes aboutCursor {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.about-content p {
    font-size: clamp(0.97rem, 0.92rem + 0.35vw, 1.07rem);
    line-height: 1.9;
    margin: 12px 0 18px;
    color: #51453b;
}

.about-hero-points {
    display: grid;
    gap: 10px;
    margin: 20px 0 6px;
}

.about-hero-point {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #2f271e;
    font-size: 15px;
    font-weight: 500;
}

.about-hero-point i {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(109, 67, 0, 0.1);
    color: rgb(109, 67, 0);
    flex: 0 0 28px;
}

.about-social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 22px 0 10px;
}

.about-social-links a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 3rem;
    height: 3rem;
    background-color: transparent;
    border: 0.16rem solid rgb(109, 67, 0);
    border-radius: 50%;
    color: rgb(109, 67, 0);
    font-size: 1.2rem;
    transition: 0.25s ease;
}

.about-social-links a:hover {
    transform: translateY(-4px) scale(1.08);
    color: #fff;
    background-color: rgb(109, 67, 0);
    filter: drop-shadow(0 0 10px rgba(109, 67, 0, 0.35));
}

.about-btn-wrap {
    margin-top: 24px;
}

.about-btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 190px;
    min-height: 54px;
    padding: 12px 28px;
    background-color: rgb(109, 67, 0);
    color: #fff;
    border: 2px solid rgb(109, 67, 0);
    outline: none;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 14px;
    transition: 0.25s ease;
    text-decoration: none;
    box-shadow: 0 14px 30px rgba(109, 67, 0, 0.14);
}

.about-btn:hover {
    transform: translateY(-3px);
    color: rgb(109, 67, 0);
    background-color: transparent;
    box-shadow: 0 0 28px rgba(109, 67, 0, 0.12);
}

.about-btn-outline {
    background: rgba(255, 255, 255, 0.72);
    color: rgb(109, 67, 0);
    border-color: rgba(109, 67, 0, 0.2);
}

.about-btn-outline:hover {
    background: rgb(109, 67, 0);
    color: #fff;
    border-color: rgb(109, 67, 0);
}

.about-section-block {
    padding: 26px 0;
}

.about-section-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 28px;
}

.about-section-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border-radius: 999px;
    margin-bottom: 12px;
    background: rgba(109, 67, 0, 0.08);
    color: rgb(109, 67, 0);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.about-section-head h2 {
    margin: 0 0 12px;
    font-size: clamp(1.7rem, 1.35rem + 1.5vw, 2.8rem);
    line-height: 1.15;
    color: #1e140a;
}

.about-section-head p {
    margin: 0;
    color: #67594e;
    line-height: 1.85;
    font-size: 1rem;
}

.about-services-grid,
.about-why-grid,
.about-reviews-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.about-service-card,
.about-why-card,
.about-review-card {
    position: relative;
    padding: 24px 20px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(109, 67, 0, 0.08);
    box-shadow: 0 16px 35px rgba(109, 67, 0, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.about-service-card:hover,
.about-why-card:hover,
.about-review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 42px rgba(109, 67, 0, 0.12);
}

.about-service-icon,
.about-why-card i {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    background: linear-gradient(135deg, rgba(109, 67, 0, 0.12), rgba(255, 187, 102, 0.2));
    color: rgb(109, 67, 0);
    font-size: 22px;
}

.about-service-card h3,
.about-why-card h3,
.about-review-card strong {
    margin: 0 0 10px;
    color: #24180c;
}

.about-service-card p,
.about-why-card p,
.about-review-card p {
    margin: 0;
    color: #66594f;
    line-height: 1.8;
    font-size: 0.95rem;
}

.about-stats-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.about-stat-card {
    padding: 26px 18px;
    border-radius: 24px;
    text-align: center;
    background: linear-gradient(135deg, #fff8ee, #ffffff);
    border: 1px solid rgba(109, 67, 0, 0.08);
    box-shadow: 0 14px 30px rgba(109, 67, 0, 0.07);
}

.about-stat-card strong {
    display: block;
    margin-bottom: 8px;
    font-size: clamp(1.8rem, 1.4rem + 1vw, 2.6rem);
    color: rgb(109, 67, 0);
    font-weight: 800;
}

.about-stat-card span {
    color: #5b4e44;
    font-size: 0.96rem;
    font-weight: 500;
}

.about-consultation-box {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(240px, 0.7fr);
    gap: 24px;
    align-items: center;
    padding: 30px;
    border-radius: 30px;
    background:
        radial-gradient(circle at top right, rgba(255, 198, 129, 0.18), transparent 30%),
        linear-gradient(135deg, #fffaf3, #fff1dd);
    border: 1px solid rgba(109, 67, 0, 0.08);
    box-shadow: 0 20px 50px rgba(109, 67, 0, 0.08);
}

.about-consultation-content h2 {
    margin: 0 0 12px;
    font-size: clamp(1.8rem, 1.5rem + 1vw, 2.8rem);
    line-height: 1.15;
    color: #24180c;
}

.about-consultation-content p {
    margin: 0 0 18px;
    color: #5d5046;
    line-height: 1.9;
}

.about-consultation-features {
    display: grid;
    gap: 10px;
    margin: 0 0 22px;
}

.about-consultation-features div {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #2f271e;
    font-weight: 500;
}

.about-consultation-features i {
    color: rgb(109, 67, 0);
}

.about-consultation-price {
    padding: 24px 18px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(109, 67, 0, 0.12);
    text-align: center;
    box-shadow: 0 14px 30px rgba(109, 67, 0, 0.08);
}

.about-price-badge {
    display: inline-flex;
    padding: 7px 12px;
    border-radius: 999px;
    margin-bottom: 12px;
    background: rgba(109, 67, 0, 0.08);
    color: rgb(109, 67, 0);
    font-size: 13px;
    font-weight: 700;
}

.about-price-value {
    font-size: 3.1rem;
    font-weight: 800;
    line-height: 1;
    color: rgb(109, 67, 0);
    margin-bottom: 10px;
}

.about-price-text {
    color: #6a5e54;
    font-size: 0.95rem;
}

.about-review-stars {
    margin-bottom: 14px;
    color: #d88a00;
    letter-spacing: 0.12em;
    font-size: 1.05rem;
}

.about-review-card strong {
    display: block;
    margin-top: 14px;
    font-size: 0.95rem;
    color: rgb(109, 67, 0);
}

@media (max-width: 1100px) {
    .about-main-container {
        flex-direction: column;
        text-align: center;
        gap: 28px;
    }

    .about-image,
    .about-content {
        width: 100%;
        max-width: 820px;
    }

    .about-social-links,
    .about-btn-wrap,
    .about-btn-group {
        justify-content: center;
    }

    .about-hero-points {
        justify-items: center;
    }

    .about-services-grid,
    .about-why-grid,
    .about-reviews-grid,
    .about-stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-consultation-box {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-consultation-features {
        justify-items: center;
    }
}

@media (max-width: 640px) {
    .about-portfolio-section {
        padding: 22px 0 46px;
        border-radius: 22px;
    }

    .about-main-container,
    .about-section-block .container {
        width: min(100%, calc(100% - 14px));
    }

    .about-main-container {
        padding: 2px 0;
        gap: 20px;
    }

    .about-image img,
    .about-image-placeholder {
        border-radius: 18px;
    }

    .about-image img {
        min-height: 300px;
        max-height: 400px;
    }

    .about-image-placeholder {
        min-height: 300px;
        font-size: 18px;
    }

    .about-badge,
    .about-small-title,
    .about-section-kicker {
        font-size: 12px;
    }

    .about-content h1 {
        font-size: 2.1rem;
    }

    .about-typewriter {
        justify-content: center;
        font-size: 1.2rem;
    }

    .about-social-links {
        justify-content: center;
    }

    .about-social-links a {
        width: 2.7rem;
        height: 2.7rem;
        font-size: 1.05rem;
    }

    .about-btn-group {
        flex-direction: column;
        align-items: stretch;
    }

    .about-btn {
        width: 100%;
        min-width: 100%;
        min-height: 50px;
        font-size: 0.95rem;
    }

    .about-services-grid,
    .about-why-grid,
    .about-reviews-grid,
    .about-stats-grid {
        grid-template-columns: 1fr;
    }

    .about-service-card,
    .about-why-card,
    .about-review-card,
    .about-stat-card {
        border-radius: 20px;
    }

    .about-consultation-box {
        padding: 22px 16px;
        border-radius: 22px;
    }

    .about-price-value {
        font-size: 2.5rem;
    }

    .about-section-block {
        padding: 20px 0;
    }

    .about-section-head {
        margin-bottom: 22px;
    }
}