/* ==========================================================================
   About Page Styles
   ========================================================================== */

/* ---------- Breadcrumb (overlaid on banner) ---------- */


.about-breadcrumb {
    top: 0;
    left: 0;
    right: 0;
    position: absolute;
    z-index: 3;
    padding: 24px 0;
}

.about-breadcrumb .breadcrumbs {
    color: #fff;
}

.about-breadcrumb .breadcrumbs a {
    color: #fff;
}

.about-breadcrumb .breadcrumbs .separator {
    color: rgba(255, 255, 255, 0.6);
}

.about-breadcrumb .breadcrumbs .current {
    color: var(--color-primary);
    font-weight: 600;
}

/* ---------- Banner ---------- */

.about-banner {
    position: relative;
    min-height: 491px;
    background-color: #875f45;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.about-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: multiply;
}

.about-banner-overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-dark-overlay);
}

.about-banner-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-bottom: 80px;
    color: #fff;
}

.about-banner-title {
    font-size: 40px;
    font-weight: 700;
    color: #fff;
}

.about-banner-text {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.4;
    color: #fff;
    max-width: 780px;
}

.about-banner-text strong {
    font-weight: 600;
}

/* ---------- Shared section elements ---------- */

.about-section-label {
    color: var(--color-primary);
    font-size: 24px;
    font-weight: 500;
}

.about-section-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--color-text-dark);
    line-height: 1.4;
}

/* ---------- Block 3: Video + Popularity ---------- */

.about-video-section {
    padding: 80px 0;
}

.about-video-grid {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.about-video-left {
    flex: 1 1 50%;
    min-width: 0;
}

.about-video-block {
    width: 100%;
    min-height: 480px;
    background-size: cover;
    background-position: center;
    border-radius: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.about-video-block::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 48px;
}

.about-video-block[data-youtube] {
    cursor: pointer;
}

.about-video-play {
    position: relative;
    z-index: 1;
    width: 165px;
    height: 165px;
    background-color: #fff;
    border: 23px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(3.75px);
}

.about-video-play:hover {
    transform: scale(1.05);
}

.about-video-play svg {
    width: 60px;
    height: 60px;
}

.about-video-right {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    gap: 32px;
    min-width: 0;
}

.about-video-header {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-video-body {
    display: flex;
    flex-direction: column;
    gap: 16px;
    font-size: 14px;
}

.about-video-desc {
    color: var(--color-text-gray);
    line-height: 1.4;
    font-weight: 300;
}

.about-checklist {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-checklist-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-checklist-item svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.about-checklist-item p {
    color: var(--color-text-dark);
    font-weight: 500;
    font-size: 14px;
    line-height: 1.4;
}

.about-learn-more-btn {
    align-self: flex-start;
    margin-top: 16px;
}

/* ---------- Block 2: Stats Section ---------- */

.about-stats-section {
    padding: 0 0 80px;
}

.about-stats-card {
    background-color: #fff;
    border-radius: 56px;
    padding: 100px 48px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 48px;
}

.about-stats-left {
    flex: 0 0 452px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 15px;
}

.about-stats-header {
    display: flex;
    flex-direction: column;
    gap: 24px;
    line-height: 1.4;
}

.about-stats-body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 48px;
    font-size: 14px;
}

.about-stats-desc {
    color: var(--color-text-gray);
    line-height: 1.4;
    font-weight: 300;
}

.about-stats-desc strong {
    color: var(--color-text-dark);
    font-weight: 700;
}

.about-stats-right {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.about-stats-col {
    width: 230px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex-shrink: 0;
}

.about-stats-col-right {
    margin-top: 40px;
}

.about-stat-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    background-color: #f8f6ef;
    padding: 24px;
    border-radius: 16px;
}

.about-stat-number {
    font-size: 40px;
    font-weight: 700;
    color: var(--color-text-dark);
    line-height: 1.2;
}

.about-stat-text {
    font-size: 14px;
    font-weight: 400;
    color: var(--color-text-dark);
    line-height: 1.4;
}

/* ---------- Block 1: Features Grid ---------- */

.about-features-section {
    padding: 0 0 80px;
}

.about-features-top {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 0;
}

.about-features-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.about-feature-row {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px;
    border-radius: 16px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.about-feature-row:hover {
    background-color: #fff;
    box-shadow: var(--shadow-card-medium);
}

.about-feature-icon {
    width: 72px;
    height: 72px;
    flex-shrink: 0;
    background-color: #fff;
    padding: 16px;
    border-radius: 12px;
    box-shadow: var(--shadow-card-medium);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-feature-row:hover .about-feature-icon {
    background-color: rgba(181, 211, 52, 0.15);
    box-shadow: none;
}

.about-feature-icon svg {
    width: 40px;
    height: 40px;
}

.about-feature-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: left;
}

.about-feature-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text-dark);
}

.about-feature-desc {
    font-size: 14px;
    font-weight: 400;
    color: var(--color-text-gray);
    line-height: 1.4;
}

/* ---------- Callback Modal ---------- */

.about-callback-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.about-callback-modal.active {
    display: flex;
}

.about-callback-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

.about-callback-modal-content {
    position: relative;
    width: 90%;
    max-width: 560px;
    background: #fff;
    border-radius: 32px;
    padding: 48px;
    z-index: 1;
}

.about-callback-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}

.about-callback-modal-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-text-dark);
}

.about-callback-modal-close {
    font-size: 32px;
    line-height: 1;
    color: var(--color-text-dark);
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
    background: none;
    border: none;
}

.about-callback-modal-close:hover {
    color: var(--color-primary);
}

.about-callback-modal-body .wpcf7-form,
.about-callback-fallback {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-callback-modal-body .wpcf7-form p {
    margin: 0;
}

.about-callback-modal-body .wpcf7-form input[type="text"],
.about-callback-modal-body .wpcf7-form input[type="tel"],
.about-callback-input {
    width: 100%;
    padding: 16px 20px;
    font-family: var(--font-body);
    font-size: var(--text-body);
    color: var(--color-text-dark);
    background-color: #f8f6ef;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.about-callback-modal-body .wpcf7-form input[type="text"]:focus,
.about-callback-modal-body .wpcf7-form input[type="tel"]:focus,
.about-callback-input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: var(--shadow-focus-ring);
}

.about-callback-modal-body .wpcf7-form input[type="submit"] {
    width: 100%;
    padding: 22px 31px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    line-height: normal;
    text-align: center;
    background-color: var(--color-primary);
    color: #fff;
    border: 1px solid var(--color-primary);
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: var(--transition);
}

.about-callback-modal-body .wpcf7-form input[type="submit"]:hover {
    filter: brightness(1.15);
}

.about-callback-modal-body .wpcf7-response-output {
    margin: 8px 0 0;
    padding: 12px;
    border-radius: var(--radius-sm);
    font-size: 14px;
}

/* ---------- Video Modal ---------- */

#about-video-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

#about-video-modal.active {
    display: flex;
}

#about-video-modal .video-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    cursor: pointer;
}

#about-video-modal .video-modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
}

#about-video-modal .video-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    transition: var(--transition);
}

#about-video-modal .video-modal-close:hover {
    color: #b5d334;
}

#about-video-modal .video-modal-iframe-wrap {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
}

#about-video-modal .video-modal-iframe-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

/* ==========================================================================
   Responsive — Tablet (max-width: 1100px)
   ========================================================================== */

@media (max-width: 1100px) {
    /* Banner */
    .about-banner {
        min-height: 380px;
    }

    .about-banner-content {
        padding-bottom: 50px;
        gap: 16px;
    }

    .about-banner-title {
        font-size: 32px;
    }

    .about-banner-text {
        font-size: 18px;
    }

    /* Section labels / titles */
    .about-section-label {
        font-size: 20px;
    }

    .about-section-title {
        font-size: 32px;
    }

    /* Video section — keep side-by-side, shrink */
    .about-video-section {
        padding: 60px 0;
    }

    .about-video-grid {
        gap: 28px;
    }

    .about-video-block {
        min-height: 360px;
        border-radius: 32px;
    }

    .about-video-block::before {
        border-radius: 32px;
    }

    .about-video-play {
        width: 120px;
        height: 120px;
        border-width: 16px;
    }

    .about-video-play svg {
        width: 44px;
        height: 44px;
    }

    .about-video-right {
        gap: 24px;
    }

    .about-video-header {
        gap: 16px;
    }

    /* Stats section — keep side-by-side, shrink */
    .about-stats-section {
        padding: 0 0 60px;
    }

    .about-stats-card {
        padding: 60px 32px;
        border-radius: 40px;
        gap: 32px;
    }

    .about-stats-left {
        flex: 0 0 320px;
        margin-top: 0;
        gap: 24px;
    }

    .about-stats-body {
        gap: 32px;
    }

    .about-stats-col {
        width: auto;
        flex: 1 1 0;
    }

    .about-stat-number {
        font-size: 32px;
    }

    .about-stat-item {
        padding: 20px;
    }

    .about-stats-col-right {
        margin-top: 28px;
    }

    /* Features — 3 per row, smaller */
    .about-features-section {
        padding: 0 0 60px;
    }

    .about-features-top {
        gap: 8px;
    }

    .about-features-bottom {
        gap: 8px;
    }

    .about-feature-row {
        padding: 16px;
        gap: 12px;
    }

    .about-feature-icon {
        width: 52px;
        height: 52px;
        padding: 10px;
    }

    .about-feature-icon svg {
        width: 32px;
        height: 32px;
    }

    .about-feature-title {
        font-size: 14px;
    }

    .about-feature-desc {
        font-size: 12px;
    }

    .about-feature-text {
        gap: 6px;
    }
}

/* ==========================================================================
   Responsive — Mobile (max-width: 768px)
   ========================================================================== */

@media (max-width: 768px) {
    /* Banner */
    .about-banner {
        min-height: 320px;
    }

    .about-banner-content {
        padding-bottom: 40px;
        gap: 16px;
    }

    .about-banner-title {
        font-size: 28px;
    }

    .about-banner-text {
        font-size: 16px;
    }

    /* Section labels/titles */
    .about-section-label {
        font-size: 16px;
    }

    .about-section-title {
        font-size: 24px;
    }

    /* Video section — stack on mobile */
    .about-video-section {
        padding: 32px 0;
    }

    .about-video-grid {
        flex-direction: column;
        gap: 32px;
    }

    .about-video-left,
    .about-video-right {
        flex: none;
        width: 100%;
    }

    .about-video-block {
        min-height: 280px;
        border-radius: 24px;
    }

    .about-video-block::before {
        border-radius: 24px;
    }

    .about-video-play {
        width: 88px;
        height: 88px;
        border-width: 12px;
    }

    .about-video-play svg {
        width: 32px;
        height: 32px;
    }

    .about-video-right {
        gap: 24px;
    }

    .about-video-header {
        gap: 16px;
    }

    .about-learn-more-btn {
        align-self: center;
    }

    /* Stats section — stack on mobile */
    .about-stats-section {
        padding: 0 0 32px;
    }

    .about-stats-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 32px 16px;
        border-radius: 24px;
        gap: 32px;
    }

    .about-stats-left {
        flex: none;
        width: 100%;
        margin-top: 0;
    }

    .about-stats-body {
        gap: 32px;
        align-items: stretch;
    }

    .about-stats-body .btn {
        text-align: center;
        max-width: 300px;
        justify-content: center;
        margin: 0 auto;
    }

    .about-stat-number {
        font-size: 32px;
    }

    .about-stats-right {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        align-items: normal;
    }

    .about-stats-col {
        flex-direction: row;
        gap: 12px;
    }

    .about-stats-col-right {
        margin-top: 0;
    }

    .about-stat-item {
        flex: 1 1 0;
        padding: 16px;
    }

    /* Features — single column on mobile */
    .about-features-section {
        padding: 0 0 32px;
    }

    .about-features-top {
        flex-direction: column;
        gap: 0;
    }

    .about-features-bottom {
        flex-direction: column;
        gap: 0;
        align-items: flex-start;
    }

    .about-feature-row {
        gap: 16px;
        padding: 16px 0;
    }

    .about-feature-icon {
        width: 56px;
        height: 56px;
        padding: 12px;
        border-radius: 10px;
    }

    .about-feature-icon svg {
        width: 32px;
        height: 32px;
    }

    .about-feature-title {
        font-size: 16px;
    }

    .about-feature-desc {
        font-size: 13px;
    }

    .about-feature-text {
        gap: 8px;
    }

    /* Callback modal */
    .about-callback-modal-content {
        padding: 24px;
        border-radius: 24px;
        max-width: calc(100% - 32px);
    }

    .about-callback-modal-title {
        font-size: 22px;
    }
}

/* ==========================================================================
   Responsive — Small Mobile (max-width: 480px)
   ========================================================================== */

@media (max-width: 480px) {
    .about-banner-title {
        font-size: 24px;
    }

    .about-banner-text {
        font-size: 14px;
    }

    .about-video-block {
        min-height: 220px;
    }

    .about-stats-col {
        flex-direction: column;
    }
}
