@charset 'UTF-8';

*button:focus {
    box-shadow: none !important;
}

img {
    max-width: 100%;
}

.process-section {
    position: relative;
    overflow: hidden;
    padding: 80px 0 60px;
    isolation: isolate;
}


.parallax-bg {
    content: '';
    position: fixed;
    z-index: -1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: url(../img/step-bg.jpg);
    background-size: cover;
    background-position: center;
    will-change: transform;

}

.process-section .container {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-heading-wrap {
    text-align: center;
    margin-bottom: 56px;
}

.services-header-label {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: #c3ad6e;
    margin-bottom: 14px;
}

.services-header-title {
    font-size: 28px;
    font-weight: 700;
    color: #fafafa;
    letter-spacing: 3px;
    line-height: 1.35;
    margin-bottom: 20px;
}

.services-header-divider {
    display: flex;
    justify-content: center;
    margin: 0 0 0 0;
}

.services-header-divider span {
    display: block;
    width: 1px;
    height: 40px;
    background: #c3ad6e;
}


.process-wrap {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    position: relative;
}


.process-wrap::before {
    content: '';
    position: absolute;
    top: 46px;
    left: calc(12.5% + 46px);
    right: calc(12.5% + 46px);
    height: 1px;
    background: linear-gradient(to right, #c3ad6e 0%, rgba(195, 173, 110, 0.4) 50%, #c3ad6e 100%);
    z-index: 0;
}

.process-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 16px;
    position: relative;
    z-index: 1;
}


@keyframes stepPulse {
    0% {
        transform: scale(1);
        border-color: #b89a5a;
        box-shadow: none;
    }

    15% {
        transform: scale(1.18);
        border-color: #f0d080;
        box-shadow: 0 0 20px rgba(201, 168, 76, 0.55);
    }

    35% {
        transform: scale(1);
        border-color: #b89a5a;
        box-shadow: none;
    }

    100% {
        transform: scale(1);
        border-color: #b89a5a;
        box-shadow: none;
    }
}


.process-step:nth-child(1) .step-circle {
    animation: stepPulse 6s ease-in-out 0s infinite;
}

.process-step:nth-child(2) .step-circle {
    animation: stepPulse 6s ease-in-out 1.5s infinite;
}

.process-step:nth-child(3) .step-circle {
    animation: stepPulse 6s ease-in-out 3s infinite;
}

.process-step:nth-child(4) .step-circle {
    animation: stepPulse 6s ease-in-out 4.5s infinite;
}

.step-circle {
    width: 92px;
    height: 92px;
    border-radius: 50%;
    border: 1.5px solid #c3ad6e;
    background: rgba(10, 8, 4, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
    transition: background 0.35s ease, transform 0.35s ease;
    backdrop-filter: blur(4px);
}


.step-circle i {
    font-size: 40px;
    color: #c3ad6e;
    transition: color 0.35s ease;
}


.process-step h4 {
    font-size: 18px;
    font-weight: 700;
    color: #f0dfa0;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.process-step p {
    font-size: 16px;
    color: rgb(255 255 255 / 100%);
    line-height: 1.75;
    max-width: 190px;
}


.process-quote {
    text-align: center;
    margin-top: 45px;
    padding-top: 40px;
    border-top: 1px solid rgba(201, 168, 76, 0.2);
}

@keyframes chevronDrop {
    0% {
        opacity: 0.15;
        transform: rotate(45deg) translate(-3.5px, -3.5px);
    }

    50% {
        opacity: 0.9;
        transform: rotate(45deg) translate(0, 0);
    }

    100% {
        opacity: 0.15;
        transform: rotate(45deg) translate(3.5px, 3.5px);
    }
}

.quote-chevron {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    margin-bottom: 28px;
}

.quote-chevron span {
    display: block;
    width: 25px;
    height: 25px;
    border-right: 2px solid #b89a5a;
    border-bottom: 2px solid #b89a5a;
    animation: chevronDrop 1.4s ease-in-out infinite;
}

.quote-chevron span:nth-child(1) {
    animation-delay: 0s;
}

.quote-chevron span:nth-child(2) {
    animation-delay: 0.18s;
}

.quote-chevron span:nth-child(3) {
    animation-delay: 0.36s;
}

.quote-text {
    font-size: 25px;
    color: #e8d8a0;
    letter-spacing: 10px;
    line-height: 1.8;
    font-weight: bold;
}

.quote-text em {
    font-style: normal;
    color: #c9a84c;
}

.contact-bar {
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(201, 168, 76, 0.25);
    padding: 60px 0 80px;
}

.contact-bar .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-phone {
    font-size: 36px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.03em;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-phone i {
    font-size: 23px;
    color: #c3ad6e;
    flex: 0 0 25px;
}

.contact-addr {
    font-size: 20px;
    color: rgb(255 255 255 / 100%);
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 2px;
}

.contact-addr i {
    color: #c3ad6e;
    font-size: 25px;
    flex: 0 0 25px;
}

@keyframes borderRun {
    0% {
        --angle: 0deg;
    }

    100% {
        --angle: 360deg;
    }
}

@property --angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

.contact-info-wrap {
    position: relative;
    padding: 20px 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
}


.contact-info-wrap::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 8px;
    background: conic-gradient(from var(--angle),
            transparent 0%,
            transparent 70%,
            #f0d080 80%,
            #ffffff 85%,
            #f0d080 90%,
            transparent 100%);
    animation: borderRun 3s linear infinite;
    z-index: 0;
}


.contact-info-wrap::after {
    content: '';
    position: absolute;
    inset: 1.5px;
    border-radius: 5px;
    background: rgb(23 13 5 / 92%);
    z-index: 1;
}


.contact-info-wrap>* {
    position: relative;
    z-index: 2;
}

.contact-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}

.btn-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    border-radius: 999px;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 2px;
    cursor: pointer;
    border: none;
    user-select: none;
    box-shadow: 0 5px 0 rgba(0, 0, 0, 0.35);
    transition: transform 0.1s ease, box-shadow 0.1s ease, filter 0.1s ease;
    overflow: hidden;
    min-width: 200px;
}

.btn-contact .btn-icon {
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 26px;
    color: #fff;
    margin-right: 1rem;
}

.btn-contact .btn-label {
    padding: 0;
    color: #fff;
    white-space: nowrap;
}

.btn-contact:hover {
    filter: brightness(1.08);
}

.btn-contact:active {
    transform: translateY(4px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.35);
    filter: brightness(0.95);
}

.btn-line {
    background: #06C755;
    box-shadow: 0 5px 0 #038a3a;
}

.btn-line:active {
    box-shadow: 0 1px 0 #038a3a;
}

.btn-fb {
    background: #1877F2;
    box-shadow: 0 5px 0 #0d51b0;
}

.btn-fb:active {
    box-shadow: 0 1px 0 #0d51b0;
}

.btn-mail {
    background: #d4982a;
    box-shadow: 0 5px 0 #9a6c10;
}

.btn-mail:active {
    box-shadow: 0 1px 0 #9a6c10;
}

@media (max-width: 1199px) {
    .btn-contact {
        min-width: 170px;
    }
}

@media (max-width: 991px) {
    .contact-info-wrap>* {
        align-items: center;
        margin: 0 auto;
    }

    .contact-info-wrap {
        padding: 4rem 1rem;
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .process-wrap {
        flex-direction: column;
        align-items: center;
        gap: 36px;
    }

    .process-wrap::before {
        display: none;
    }

    .process-step {
        max-width: 280px;
    }

    .contact-info-wrap>* {
        flex-direction: column;
        gap: 30px;
    }

    .contact-bar .container {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-contact {
        min-width: 250px;
    }
}