/* =========================================
   TAILOR MADE PAGE STYLES
   ========================================= */

/* Hero Text Animation */
.tm-hero-title {
    animation: fadeInUp 1s ease-out;
}

.tm-hero-subtitle {
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Process Steps Cards */
.tm-step-card {
    transition: all 0.4s ease;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    background: #fff;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
}

.tm-step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12) !important;
}

.tm-step-img-wrapper {
    overflow: hidden;
    height: 220px;
    position: relative;
}

.tm-step-img {
    transition: transform 0.6s ease;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tm-step-card:hover .tm-step-img {
    transform: scale(1.1);
}

.tm-step-number {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.95);
    color: #f37021;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

/* Form Styling */
.tm-form-container {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    /* Soft shadow */
    overflow: hidden;
}

/* Interest Selectable Cards */
.interest-check-input {
    display: none;
    /* Hide default checkbox */
}

.interest-card-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 10px;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-align: center;
    background: #ffffff;
    height: 100%;
    position: relative;
}

.interest-card-label:hover {
    border-color: rgba(243, 112, 33, 0.3);
    /* Theme orange with opacity */
    background: rgba(243, 112, 33, 0.02);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.interest-check-input:checked+.interest-card-label {
    border-color: #f37021;
    background: rgba(243, 112, 33, 0.05);
    color: #f37021;
    /* Theme orange instead of dark orange */
    box-shadow: 0 8px 20px rgba(243, 112, 33, 0.2);
    transform: translateY(-3px);
}

.interest-icon {
    font-size: 2rem;
    margin-bottom: 12px;
    color: #2a9d8f;
    /* Theme teal */
    transition: all 0.3s;
}

.interest-check-input:checked+.interest-card-label .interest-icon {
    color: #f37021;
    /* Theme orange */
    transform: scale(1.1);
}

.interest-name {
    font-weight: 600;
    font-size: 0.9rem;
}

/* Form Controls */
.form-control-custom,
.form-select-custom {
    padding: 15px 20px;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    background-color: #fcfcfc;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.form-control-custom:focus,
.form-select-custom:focus {
    background-color: #fff;
    border-color: #2a9d8f;
    /* Theme teal */
    box-shadow: 0 0 0 4px rgba(42, 157, 143, 0.1);
    outline: none;
}

.form-label-custom {
    font-size: 0.8rem;
    font-weight: 700;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 10px;
    display: block;
}

/* Submit Section */
.btn-submit-tm {
    background-color: #f37021;
    /* Theme orange */
    color: white;
    border: none;
    border-radius: 50px;
    padding: 15px 40px;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 10px 20px rgba(243, 112, 33, 0.3);
    transition: all 0.3s ease;
}

.btn-submit-tm:hover {
    background-color: #d45e1a;
    /* Theme hover orange */
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(243, 112, 33, 0.4);
    color: white;
}

/* Theme Olive Color (from View All links based on user request) */
.text-olive-theme {
    color: #98a148 !important;
}

.btn-reset-tm {
    background-color: transparent;
    color: #666;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    padding: 15px 40px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-reset-tm:hover {
    background-color: #f8f9fa;
    border-color: #ccc;
    color: #333;
    transform: translateY(-3px);
}