/* Inner Page Styles */
.service-detail-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08) !important;
    border-color: #f78f1e !important;
    background: #fafcff;
}
.breadcrumb-item+.breadcrumb-item::before{
    color: #fff;
}
.breadcrumb-item.active {
    color: rgb(255 255 255 / 75%);
}
.service-detail-card h3 {
    position: relative;
    display: inline-block;
}
.service-detail-card h3::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    bottom: -8px;
    left: 0;
    background: #f78f1e;
    transition: width 0.3s ease;
}
.service-detail-card:hover h3::after {
    width: 100%;
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-text {
    animation: slideInLeft 1s ease forwards;
}
.animate-text-delay {
    opacity: 0;
    animation: slideInRight 1s ease 0.3s forwards;
}

/* Contact Page Styles */
.contact-box {
    background: #fff;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.title-divider {
    width: 50px;
    height: 3px;
    background: #f78f1e;
    margin-bottom: 30px;
}
.form-custom {
    padding: 15px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
}
select.form-custom {
    color: #64748b;
}
.btn-contact {
    background: #1d335b;
    padding: 12px 40px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,142,191,0.3);
}
.btn-contact:hover {
    background: #f78f1e;
    box-shadow: 0 8px 20px rgba(0,142,191,0.4);
    transform: translateY(-2px);
}

/* Shared Inner Page Styles */
.inner-page-banner {
    padding: 40px 0 40px 0;
    color: #fff;
    text-align: center;
    background-size: cover !important;
    background-position: center !important;
}
.inner-page-title {
    font-weight: 700;
    font-size: 48px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.breadcrumb-custom {
    background: transparent;
    padding: 0;
    margin: 0;
    font-size: 16px;
}
.breadcrumb-link {
    color: #f78f1e;
    text-decoration: none;
    transition: color 0.3s ease;
}
.breadcrumb-link:hover {
    color: #ffaa44;
}
.breadcrumb-active {
    color: #e2e8f0;
}

.bg-light-section {
    padding: 80px 0;
    background: #f8fafc;
}
.service-card-wrapper {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: none !important;
    opacity: 0;
}
.service-img {
    /*width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;*/
    padding: 10px 5px;
    border-radius: 35px;
}
.service-title {
    color: #1c325b;
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
}
.service-text {
    color: #64748b;
    line-height: 1.8;
    font-size: 16px;
}
.text-contact-strong {
    color: #475569;
    line-height: 1.8;
    font-size: 16px;
}
/*.map-section{
    padding-bottom: 60px;
}*/
.contact-section{
    padding: 40px 0px 30px;
}
.map-section iframe{
        box-shadow: 0 20px 70px rgb(136 142 160 / 40%);
    border-radius: 15px;
}