/* ============================= */
/* Modern Process Section */
/* ============================= */

.tc-process-section {
    position: relative;
    padding: 120px 0;
    background:
        radial-gradient(circle at top left, rgba(160, 103, 23, 0.10), transparent 30%),
        radial-gradient(circle at bottom right, rgba(170, 178, 139, 0.20), transparent 32%),
        linear-gradient(180deg, #ffffff 0%, #f9f6ef 100%);
    overflow: hidden;
    z-index: 1;
}

.tc-process-bg-shape {
    position: absolute;
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
}

.tc-process-shape-one {
    width: 420px;
    height: 420px;
    top: -180px;
    right: -120px;
    background: rgba(160, 103, 23, 0.12);
}

.tc-process-shape-two {
    width: 280px;
    height: 280px;
    left: -90px;
    bottom: -130px;
    background: rgba(170, 178, 139, 0.28);
}

.tc-process-heading {
    max-width: 850px;
    margin: 0 auto 55px;
}

.tc-process-sub-title {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    padding: 9px 16px;
    border-radius: 999px;
    background: rgba(160, 103, 23, 0.10);
    color: #a06717;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.tc-process-sub-title::before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #aab28b;
    box-shadow: 0 0 0 6px rgba(170, 178, 139, 0.28);
}

.tc-process-title {
    margin: 0 0 18px;
    color: #24180d;
    font-size: clamp(34px, 4.5vw, 56px);
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -0.045em;
}

.tc-process-title span {
    color: #a06717;
}

.tc-process-heading p {
    max-width: 720px;
    margin: 0 auto;
    color: #5f574c;
    font-size: 17px;
    line-height: 1.75;
}

.tc-process-row {
    row-gap: 30px;
}

.tc-process-card {
    position: relative;
    height: 100%;
    overflow: hidden;
    border-radius: 30px;
    background: #ffffff;
    border: 1px solid rgba(160, 103, 23, 0.12);
    box-shadow: 0 18px 45px rgba(43, 31, 18, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.tc-process-card:hover {
    transform: translateY(-9px);
    border-color: rgba(160, 103, 23, 0.35);
    box-shadow: 0 28px 65px rgba(43, 31, 18, 0.14);
}

.tc-process-image {
    position: relative;
    overflow: hidden;
    min-height: 265px;
}

.tc-process-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, transparent 35%, rgba(36, 24, 13, 0.55) 100%),
        linear-gradient(135deg, rgba(160, 103, 23, 0.20), transparent 55%);
    z-index: 1;
    pointer-events: none;
}

.tc-process-image img {
    width: 100%;
    height: 265px;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}

.tc-process-card:hover .tc-process-image img {
    transform: scale(1.08);
}

.tc-process-number {
    position: absolute;
    right: 22px;
    bottom: 22px;
    z-index: 2;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: #ffffff;
    color: #a06717;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 900;
    box-shadow: 0 16px 36px rgba(43, 31, 18, 0.20);
}

.tc-process-content {
    position: relative;
    padding: 32px 30px 34px;
}

.tc-process-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 30px;
    right: 30px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, #a06717, #aab28b);
}

.tc-process-icon {
    width: 62px;
    height: 62px;
    margin-bottom: 22px;
    border-radius: 20px;
    background: linear-gradient(135deg, #a06717 0%, #7d4d10 100%);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 27px;
    box-shadow: 0 16px 32px rgba(160, 103, 23, 0.24);
}

.tc-process-content .title {
    margin: 0 0 12px;
    color: #24180d;
    font-size: 23px;
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: -0.025em;
}

.tc-process-content p {
    margin: 0;
    color: #655c51;
    font-size: 15px;
    line-height: 1.75;
}

@media (max-width: 991px) {
    .tc-process-section {
        padding: 90px 0;
    }

    .tc-process-heading {
        margin-bottom: 40px;
    }
}

@media (max-width: 767px) {
    .tc-process-section {
        padding: 70px 0;
    }

    .tc-process-title {
        font-size: 34px;
    }

    .tc-process-heading p {
        font-size: 16px;
    }

    .tc-process-card {
        border-radius: 24px;
    }

    .tc-process-image,
    .tc-process-image img {
        height: 240px;
        min-height: 240px;
    }

    .tc-process-content {
        padding: 28px 22px 30px;
    }

    .tc-process-content::before {
        left: 22px;
        right: 22px;
    }
}


/* ============================= */
/* Elegant 404 Page Section */
/* ============================= */

.tc-error-page {
    position: relative;
    min-height: 82vh;
    padding: 130px 0;
    background:
        radial-gradient(circle at top left, rgba(160, 103, 23, 0.12), transparent 32%),
        radial-gradient(circle at bottom right, rgba(170, 178, 139, 0.22), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f8f5ef 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.tc-error-bg-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.tc-error-shape-one {
    width: 430px;
    height: 430px;
    top: -170px;
    right: -120px;
    background: rgba(160, 103, 23, 0.13);
}

.tc-error-shape-two {
    width: 300px;
    height: 300px;
    left: -100px;
    bottom: -120px;
    background: rgba(170, 178, 139, 0.30);
}

.tc-error-page .container {
    position: relative;
    z-index: 2;
}

.tc-error-wrapper {
    position: relative;
    max-width: 980px;
    margin: 0 auto;
    padding: 70px 48px;
    border-radius: 36px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(160, 103, 23, 0.14);
    box-shadow: 0 30px 80px rgba(43, 31, 18, 0.12);
    backdrop-filter: blur(14px);
    text-align: center;
    overflow: hidden;
}

.tc-error-wrapper::before {
    content: "";
    position: absolute;
    inset: 14px;
    border-radius: 28px;
    border: 1px solid rgba(160, 103, 23, 0.12);
    pointer-events: none;
}

.tc-error-wrapper::after {
    content: "";
    position: absolute;
    width: 210px;
    height: 210px;
    right: -80px;
    top: -90px;
    border-radius: 50%;
    background: rgba(170, 178, 139, 0.28);
    pointer-events: none;
}

.tc-error-code {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    margin-bottom: 28px;
}

.tc-error-code span {
    color: #a06717;
    font-size: clamp(90px, 15vw, 180px);
    line-height: 0.85;
    font-weight: 950;
    letter-spacing: -0.08em;
    text-shadow: 0 18px 40px rgba(160, 103, 23, 0.18);
}

.tc-error-home-icon {
    width: clamp(82px, 10vw, 128px);
    height: clamp(82px, 10vw, 128px);
    border-radius: 34px;
    background:
        linear-gradient(135deg, #a06717 0%, #7c4c10 100%);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(36px, 5vw, 58px);
    box-shadow: 0 24px 55px rgba(160, 103, 23, 0.28);
    transform: rotate(-6deg);
    animation: tcFloat404 4s ease-in-out infinite;
}

@keyframes tcFloat404 {
    0%, 100% {
        transform: translateY(0) rotate(-6deg);
    }
    50% {
        transform: translateY(-10px) rotate(4deg);
    }
}

.tc-error-content {
    position: relative;
    z-index: 2;
}

.tc-error-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    padding: 9px 16px;
    border-radius: 999px;
    background: rgba(160, 103, 23, 0.10);
    color: #a06717;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.tc-error-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-error-content h1 {
    max-width: 760px;
    margin: 0 auto 18px;
    color: #24180d;
    font-size: clamp(34px, 5vw, 62px);
    line-height: 1.06;
    font-weight: 950;
    letter-spacing: -0.055em;
}

.tc-error-content p {
    max-width: 680px;
    margin: 0 auto 34px;
    color: #5f574c;
    font-size: 17px;
    line-height: 1.75;
}

.tc-error-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 26px;
}

.tc-error-btn {
    position: relative;
    overflow: hidden;
    min-height: 56px;
    padding: 16px 26px;
    border-radius: 999px;
    background: #a06717;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 18px 36px rgba(160, 103, 23, 0.28);
    transition: transform 0.35s ease, background 0.35s ease, box-shadow 0.35s ease, color 0.35s ease;
}

.tc-error-btn::before {
    content: "";
    position: absolute;
    top: -80%;
    left: -35%;
    width: 34%;
    height: 260%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.40), transparent);
    transform: rotate(24deg) translateX(-135%);
    transition: transform 0.75s ease;
}

.tc-error-btn:hover {
    transform: translateY(-3px);
    background: #7c4c10;
    color: #ffffff;
    box-shadow: 0 24px 50px rgba(160, 103, 23, 0.38);
}

.tc-error-btn:hover::before {
    transform: rotate(24deg) translateX(440%);
}

.tc-error-btn-outline {
    background: #ffffff;
    color: #a06717;
    border: 1px solid rgba(160, 103, 23, 0.24);
    box-shadow: 0 14px 34px rgba(43, 31, 18, 0.08);
}

.tc-error-btn-outline:hover {
    background: #aab28b;
    color: #ffffff;
    box-shadow: 0 20px 44px rgba(170, 178, 139, 0.34);
}

.tc-error-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.tc-error-links a {
    color: #24180d;
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
    transition: color 0.3s ease;
}

.tc-error-links a:hover {
    color: #a06717;
}

.tc-error-links span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #aab28b;
}

@media (max-width: 991px) {
    .tc-error-page {
        padding: 100px 0;
    }

    .tc-error-wrapper {
        padding: 56px 34px;
    }
}

@media (max-width: 767px) {
    .tc-error-page {
        min-height: auto;
        padding: 80px 0;
    }

    .tc-error-wrapper {
        padding: 46px 20px;
        border-radius: 26px;
    }

    .tc-error-wrapper::before {
        inset: 10px;
        border-radius: 20px;
    }

    .tc-error-code {
        gap: 12px;
    }

    .tc-error-content p {
        font-size: 16px;
    }

    .tc-error-actions {
        flex-direction: column;
    }

    .tc-error-btn {
        width: 100%;
    }

    .tc-error-links {
        flex-direction: column;
        gap: 10px;
    }

    .tc-error-links span {
        display: none;
    }
}