/* ============================
   Expose Styles
   ============================ */

:root {
    --primary-color: #cf2127;
    --dark-bg: #1a1a1a;
    --transition: 0.3s ease;
}

.expose .main_card h3 {
    position: relative;
    text-transform: capitalize;
    color: #282b2d;
    margin: 0 auto 24px;
    font-size: 24px;
    font-weight: 600;
}

.expose .main_card .cover {
    position: relative;
    width: 100%;
    height: 520px;
}

.expose .main_card .cover .cover__media {
    position: absolute;
    inset: 0;
    border-radius: 24px;
    overflow: hidden;
    background: #1a1a1a;
}

.expose .main_card .cover .cover__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 24px;
}

.expose .main_card .cover .cover__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 24px;
    z-index: 1;
    pointer-events: none;
}

.expose .main_card .cover .cont {
    position: absolute;
    inset-inline-end: 30px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #fff;
    border-radius: 24px;
    padding: 18px 20px;
    width: 100%;
    max-width: 330px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    height: auto;
    min-height: 220px;
    max-height: 72%;
    overflow: hidden;
    z-index: 2;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.expose .main_card .cover .cont__logo-wrap {
    width: 100%;
    min-height: 48px;
    max-height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-bottom: 6px;
}

.expose .main_card .cover .cover__logo {
    max-width: 100%;
    max-height: 64px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.expose-about {
    margin: 32px 0 0;
}

.expose-about__inner {
    padding: 24px 28px;
    background: #fafafa;
    border-radius: 16px;
    border: 1px solid #eee;
    line-height: 1.75;
    color: #333;
    font-size: 15px;
}

.expose .main_card .cover ul {
    border: solid #ddd;
    border-width: 1px 0;
    margin: 16px auto;
    width: 100%;
}

.expose .main_card .cover ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 16px auto;
    word-break: break-word;
    line-height: 1.45;
}

.expose .main_card .cover ul li i {
    margin: 0;
    margin-bottom: 0;
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    border-radius: 6px;
    background-color: rgba(172, 18, 17, 0.08);
    color: #cf2127 !important;
    font-size: 14px;
    text-align: center;
    line-height: 1;
}

.expose .main_card .cover ul li i::after {
    display: none;
}

.expose .main_card .cover .countdown {
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 8px;
    padding: 8px 10px;
    background: #f5f5f7;
    border-radius: 15px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    flex-wrap: wrap;
    min-height: 68px;
    max-height: 92px;
    overflow: hidden;
}

.expose .main_card .cover .countdown > div {
    padding: 2px 4px;
    line-height: 1.15;
}

.expose .main_card .cover .countdown .number {
    font-size: 24px;
    font-weight: 700;
}

.expose .main_card .cover .countdown .label {
    font-size: 12px;
}

.expose .main_card .cover .countdown span {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #cf2127;

}

.expose .main_card .cover .countdown span:last-child {
    color: #212121;
    font-weight: 400;
    font-size: 16px;
}

/* ============================
   Timeline Styles
   ============================ */

.timeline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 64px auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 43px;
    width: 100%;
    height: 4px;
    background-color: #cf2127;
    border-radius: 50px;
}

.timeline h4 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 48px;

}

.timeline span {
    font-size: 14px
}

.timeline .item {
    position: relative;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.timeline .item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    width: 24px;
    height: 24px;
    background-color: #f8f8f8;
    border-radius: 50%;
    border: 2px solid #cf2127;
}

.timeline .item:nth-child(odd) {
    flex-direction: column-reverse;
}

.timeline .item:nth-child(odd) h4 {
    margin: 48px 0 0;
}

.small_txt {
    font-size: 16px;
    text-transform: capitalize;
    margin: 8px auto 0;
    padding-bottom: 10px;
}

/* ============================
   Process Step Styles
   ============================ */

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    position: relative;
    margin: 0 auto 32px;
}

.step-icon-wrapper {
    position: relative;
    flex-shrink: 0;
}

.step-number {
    width: 80px;
    height: 80px;
    background-color: #fff;
    border: 4px solid #cf2127;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.step-number::after {
    content: "";
    background: linear-gradient(180deg, #cf2127 0%, rgba(0, 0, 0, 0.00) 100%);
    width: 2px;
    height: 48px;
    bottom: -50px;
    position: absolute;
    margin: auto;
    left: 0;
    right: 0;
}

.step-number i {
    font-size: 18px;
    color: #cf2127;
}

.step-number span {
    font-weight: 700;
    background-color: var(--primary-color);
    color: var(--dark-bg);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    line-height: 32px;
    text-align: center;
    font-size: 14px;
    position: absolute;
    top: -8px;
    inset-inline-start: -8px;
}

.step-content {
    flex: 1;
    background: white;
    padding: 24px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.step-content:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transform: translateX(-5px);
}

.step-content h3 {
    color: #282b2d;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.step-content p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

/* ============================
   Service Item Styles
   ============================ */

.serv_item {
    position: relative;
    margin: 0 0 32px;
    background: white;
    padding: 16px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.serv_item h3 {
    font-weight: 600;
    font-size: 17px;
    margin: 24px auto 10px;
}

.serv_item p {
    margin: 0;
    font-size: 14px;
    max-width: 240px;
}

.serv_item img {
    overflow: hidden;
    border-radius: 14px;
}

a.serv_item {
    display: block;
    text-decoration: none;
    color: inherit;
}

a.serv_item:hover {
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

/* ============================
   Expos Item Styles
   ============================ */

.expos_item {
    position: relative;
    display: block;
    margin: 0 0 32px;
    background: #111;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.35s ease, transform 0.35s ease;
    text-decoration: none;
    height: 220px;
    overflow: hidden;
}

.expos_item:hover {
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.18);
    transform: translateY(-6px);
}

.expos_item h3 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.68);
    margin: 0;
    padding: 16px 20px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1.35;
    z-index: 3;
    transition: background-color 0.35s ease;
}

.expos_item:hover h3 {
    background-color: rgba(0, 0, 0, 0.75);
}

.expos_item__cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    overflow: hidden;
    border-radius: 14px;
}

.expos_item__cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 0.5s ease;
    will-change: transform;
}

.expos_item:hover .expos_item__cover img {
    transform: scale(1.08);
}

.expos_item img {
    overflow: hidden;
    border-radius: 14px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (prefers-reduced-motion: reduce) {
    .expos_item,
    .expos_item h3,
    .expos_item__cover img {
        transition: none;
    }
    .expos_item:hover .expos_item__cover img {
        transform: none;
    }
}

/* ============================
   Service Category Card Styles
   ============================ */

.category-header {
    text-align: center;
    margin-bottom: 50px;
}

.category-title {
    font-size: 32px;
    font-weight: 700;
    color: #cf2127;
    margin-bottom: 15px;
}

.category-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.service-category-card {
    display: block;
    text-decoration: none;
    color: inherit;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.service-category-card:hover {
    text-decoration: none;
    transform: translateY(-5px);
}

.service-category-card .card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 15px;
}

.service-category-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-category-card:hover .card-image img {
    transform: scale(1.05);
}

.service-category-card .card-title {
    font-size: 20px;
    font-weight: 600;
    color: #282b2d;
    margin-bottom: 10px;
}

.service-category-card .card-description {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* ============================
   Service Details Styles
   ============================ */

.service-details-section {
    padding: 60px 0;
}

.service-icon-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 8px;
    background: #f8f8f8;
    border-radius: 24px;
}

.service-icon-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
}

.service-category {
    font-size: 24px;
    font-weight: 700;
    color: #cf2127;
    margin-bottom: 10px;
}

.service-type {
    font-size: 18px;
    color: #666;
}

.service-content-wrapper {
    padding: 20px;
}

.service-title {
    font-size: 24px;
    font-weight: 700;
    color: #cf2127;
    margin-bottom: 15px;
}

.service-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.service-features li {
    padding: 8px 0;
    color: #333;
    font-size: 15px;
}

.service-features li::before {
    content: "• ";
    color: #cf2127;
    font-weight: bold;
    margin-right: 8px;
}

.price-section {
    margin: 30px 0;
    padding: 16px;
    background: #f5f5f5;
    border-radius: 10px;
}

.price-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.price-amount {
    font-size: 22px;
    font-weight: 700;
    color: #cf2127;
}

.quantity-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.quantity-label {
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
}

.quantity-input {
    width: 80px;
    padding: 8px;
    text-align: center;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.action-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.quotation-section {
    padding: 16px 0;
    border-top: 1px solid #e0e0e0;
}

.quotation-title {
    font-size: 18px;
    font-weight: 700;
    color: #cf2127;
    margin-bottom: 16px;
}

.quotation-form {
    max-width: 600px;
    margin: 0 auto;
}

.quotation-form .form-group {
    margin-bottom: 20px;
}

.quotation-form label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    display: block;
}

.quotation-form input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.3s ease;
}

.quotation-form input:focus {
    outline: none;
    border-color: #cf2127;
}
