/* Contact Section - Kurumsal ve Minimal Stil */
.contact .info-item {
    margin-bottom: 30px;
}

.contact .info-item h4 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.contact .info-item p {
    margin: 0;
    line-height: 1.8;
    color: #333;
}

.contact .info-item a {
    color: #333;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    margin-right: 8px;
}

.contact .info-item a:hover {
    color: var(--color-secondary);
    text-decoration: none;
}

/* Icon Renkleri - Kurumsal */
.contact .info-item .bi-envelope,
.contact .info-item .bi-telephone,
.contact .info-item .bi-whatsapp,
.contact .info-item .bi-globe,
.contact .info-item .bi-clock,
.contact .info-item .bi-geo-alt {
    color: var(--color-primary);
}

/* Services Section Custom Styles */
.sections-bg {
    background-color: #f8f9fa;
}

.service-item {
    padding: 30px;
    background: #fff;
    box-shadow: 0px 5px 90px 0px rgba(110, 123, 135, 0.1);
    border-radius: 10px;
    height: 100%;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0px 10px 35px 0px rgba(110, 123, 135, 0.2);
}

.service-item .service-img {
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 20px;
    height: 220px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-item .service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.3s ease-in-out;
}

.service-item:hover .service-img img {
    transform: scale(1.1);
}

.service-item .icon {
    width: 60px;
    height: 60px;
    background: var(--color-primary);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 28px;
    color: #fff;
    transition: 0.3s;
}

.service-item h3 {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 20px;
}

.service-item h3 a {
    color: var(--color-secondary);
    transition: 0.3s;
}

.service-item h3 a:hover {
    color: var(--color-primary);
}

.service-item p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
    color: #6c757d;
}

/* Services Detail Page Styles */
.services-detail {
    padding: 80px 0;
}

.services-detail.alt-bg {
    background: #f8f9fa;
}

.services-detail-img {
    border-radius: 10px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.services-detail h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 20px;
}

.services-detail .lead {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.services-detail p {
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 20px;
}

.services-list {
    list-style: none;
    padding: 0;
}

.services-list li {
    padding: 10px 0;
    font-size: 16px;
}

.services-list i {
    color: var(--color-primary);
    margin-right: 10px;
    font-size: 18px;
}

.info-box {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.05);
    margin: 30px 0;
    border-left: 4px solid var(--color-primary);
}

.info-box h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--color-secondary);
}

.health-type {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.05);
}

.health-type h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 15px;
}

.health-type h4 i {
    margin-right: 10px;
}

.construction-type {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: all 0.3s;
}

.construction-type:hover {
    transform: translateY(-5px);
    box-shadow: 0px 10px 35px rgba(0, 0, 0, 0.12);
}

.construction-type h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-secondary);
    margin: 20px 0;
}

.icon-box-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #0d6efd 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #fff;
}

.construction-type h5 {
    font-size: 16px;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 10px;
    color: var(--color-secondary);
}

/* Breadcrumbs styling for services page */
.breadcrumbs .page-header {
    padding: 120px 0 60px 0;
    min-height: 20vh;
    position: relative;
    background-color: var(--color-secondary);
    background-size: cover;
    background-position: center;
}

.breadcrumbs .page-header h2 {
    font-size: 56px;
    font-weight: 700;
    color: #fff;
    font-family: var(--font-secondary);
}

.breadcrumbs .page-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
}

.breadcrumbs nav {
    background-color: #f8f9fa;
    padding: 20px 0;
}

.breadcrumbs nav ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.breadcrumbs nav ol li+li {
    padding-left: 10px;
}

.breadcrumbs nav ol li+li::before {
    display: inline-block;
    padding-right: 10px;
    color: #6c757d;
    content: "/";
}

