/* TekDepo Custom Styles
   ===========================
   Replaces inline styles with proper CSS classes
*/

/* ================================================
   Service Pages - Professional Redesign
   ================================================ */

/* --- Service Intro Section --- */
.service-intro {
    background: #f8f9fa;
    padding: 80px 0 60px;
}

.service-intro .intro-icon-box {
    text-align: center;
    padding: 30px 20px;
    transition: all 0.3s ease;
}

.service-intro .intro-icon-box i {
    width: 80px;
    height: 80px;
    line-height: 80px;
    background: linear-gradient(135deg, #E4097F 0%, #B5076A 100%);
    color: #fff;
    border-radius: 50%;
    font-size: 32px;
    display: inline-block;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(228, 9, 127, 0.25);
}

.service-intro .intro-icon-box:hover i {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(228, 9, 127, 0.35);
}

.service-intro .intro-icon-box h6 {
    font-family: "Rubik", sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #222;
    margin-bottom: 8px;
}

.service-intro .intro-icon-box p {
    font-size: 14px;
    color: #9b9b9b;
    line-height: 1.6;
    margin-bottom: 0;
}

/* --- Service Detail Content --- */
.service-detail {
    padding: 80px 0;
}

.service-detail .detail-content h2 {
    font-family: "Rubik", sans-serif;
    font-weight: 500;
    font-size: 28px;
    color: #222;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.service-detail .detail-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #E4097F;
    border-radius: 2px;
}

.service-detail .detail-content h3 {
    font-family: "Rubik", sans-serif;
    font-weight: 500;
    font-size: 22px;
    color: #222;
    margin-bottom: 15px;
}

.service-detail .detail-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
}

/* --- Check Lists --- */
.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.check-list li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 15px;
    color: #444;
    display: flex;
    align-items: center;
}

.check-list li:last-child {
    border-bottom: none;
}

.check-list li i {
    color: #E4097F;
    margin-right: 12px;
    font-size: 16px;
    flex-shrink: 0;
}

/* --- Process / Steps Section --- */
.service-process {
    background: #f8f9fa;
    padding: 80px 0;
}

.process-step {
    text-align: center;
    padding: 30px 20px;
    position: relative;
}

.process-step .step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: #fff;
    color: #E4097F;
    border: 3px solid #E4097F;
    border-radius: 50%;
    font-size: 24px;
    font-weight: 700;
    font-family: "Rubik", sans-serif;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.process-step:hover .step-number {
    background: #E4097F;
    color: #fff;
    box-shadow: 0 8px 25px rgba(228, 9, 127, 0.3);
}

.process-step h6 {
    font-family: "Rubik", sans-serif;
    font-weight: 500;
    font-size: 17px;
    color: #222;
    margin-bottom: 8px;
}

.process-step p {
    font-size: 14px;
    color: #9b9b9b;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Connector line between steps */
@media (min-width: 992px) {
    .process-step::after {
        content: '';
        position: absolute;
        top: 65px;
        right: -15%;
        width: 30%;
        height: 2px;
        background: #e0e0e0;
        z-index: 1;
    }
    .process-step:last-child::after {
        display: none;
    }
}

/* --- Feature Cards (modern) --- */
.feature-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid #eee;
    height: 100%;
}

.feature-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
    border-color: transparent;
}

.feature-card.feature-card--center {
    text-align: center;
}

.feature-card .feature-card-icon {
    font-size: 42px;
    color: #E4097F;
    margin-bottom: 15px;
    display: inline-block;
}

.feature-card h6 {
    font-family: "Rubik", sans-serif;
    font-weight: 500;
    color: #222;
}

.feature-card p {
    font-size: 14px;
    color: #9b9b9b;
    line-height: 1.6;
    margin-bottom: 0;
}

/* --- Spec Cards --- */
.spec-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #E4097F;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
    height: 100%;
    transition: all 0.3s ease;
}

.spec-card:hover {
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.spec-card h5 {
    font-family: "Rubik", sans-serif;
    font-weight: 500;
    color: #222;
    margin-bottom: 15px;
}

.spec-card ul {
    line-height: 2;
}

/* --- Container Spec Cards --- */
.container-spec-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
    padding: 28px 28px 24px;
    height: 100%;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}
.container-spec-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.csc-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}
.csc-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, #fff0f7 0%, #fce4f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.csc-icon i {
    font-size: 22px;
    color: #E4097F;
}
.csc-large .csc-icon {
    background: linear-gradient(135deg, #E4097F 0%, #B5076A 100%);
}
.csc-large .csc-icon i {
    color: #fff;
}

.csc-title h5 {
    font-family: "Rubik", sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #222;
    margin: 0 0 4px;
}
.csc-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 20px;
    background: #f0f0f0;
    color: #666;
}
.csc-badge-primary {
    background: linear-gradient(135deg, #E4097F 0%, #B5076A 100%);
    color: #fff;
}

/* Visual size comparison bar */
.csc-visual {
    padding: 0 0 20px;
}
.csc-visual .csc-bar {
    height: 6px;
    border-radius: 3px;
    background: linear-gradient(90deg, #E4097F 0%, #f06cb5 100%);
    transition: width 0.6s ease;
}

.csc-specs {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.csc-spec-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 0;
    border-top: 1px solid #f2f2f2;
    font-size: 14px;
    color: #444;
}
.csc-spec-row i {
    width: 18px;
    text-align: center;
    color: #E4097F;
    font-size: 13px;
    flex-shrink: 0;
}
.csc-spec-row .csc-label {
    color: #888;
    min-width: 65px;
}
.csc-spec-row strong {
    color: #222;
    margin-left: auto;
    text-align: right;
}

/* --- Info/Alert Box --- */
.info-box {
    background: linear-gradient(135deg, #fff5f9 0%, #fff 100%);
    border-radius: 8px;
    border-left: 4px solid #E4097F;
    padding: 30px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.04);
}

.info-box h5 {
    font-family: "Rubik", sans-serif;
    font-weight: 500;
    color: #222;
}

.info-box i {
    color: #E4097F;
}

.info-box p {
    color: #666;
    margin-bottom: 0;
}

/* --- Trust / Stats Bar --- */
.service-stats {
    background: linear-gradient(135deg, #E4097F 0%, #B5076A 100%);
    padding: 60px 0;
}

.service-stats .stat-item {
    text-align: center;
    padding: 15px;
}

.service-stats .stat-item .stat-icon {
    font-size: 36px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 12px;
}

.service-stats .stat-item .stat-num {
    font-family: "Rubik", sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
}

.service-stats .stat-item .stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Enhanced Sidebar --- */
.sidebar-service .widget {
    margin-bottom: 30px;
}

.sidebar-service .widget-categories,
.sidebar-service .widget-cta,
.sidebar-service .widget-contact {
    margin-bottom: 30px;
}

.sidebar-service .widget-categories {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.sidebar-service .widget-categories .widget-title {
    background: linear-gradient(135deg, #E4097F 0%, #B5076A 100%);
    padding: 20px 25px;
}

.sidebar-service .widget-categories .widget-title h5 {
    color: #fff;
    margin-bottom: 0;
    font-size: 18px;
}

.sidebar-service .widget-categories .widget-content ul {
    padding: 0;
    margin: 0;
}

.sidebar-service .widget-categories .widget-content ul li {
    border-bottom: 1px solid #f0f0f0;
}

.sidebar-service .widget-categories .widget-content ul li:last-child {
    border-bottom: none;
}

.sidebar-service .widget-categories .widget-content ul li a {
    display: flex;
    align-items: center;
    padding: 15px 25px;
    color: #444;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.sidebar-service .widget-categories .widget-content ul li a::before {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 12px;
    color: #ccc;
    transition: all 0.3s ease;
}

.sidebar-service .widget-categories .widget-content ul li a:hover,
.sidebar-service .widget-categories .widget-content ul li.active a {
    color: #E4097F;
    background: #fff5f9;
    padding-left: 30px;
}

.sidebar-service .widget-categories .widget-content ul li a:hover::before,
.sidebar-service .widget-categories .widget-content ul li.active a::before {
    color: #E4097F;
}

.sidebar-service .widget-cta {
    background: linear-gradient(135deg, #1b1a1a 0%, #333 100%);
    border-radius: 8px;
    padding: 35px 25px;
    text-align: center;
    color: #fff;
}

.sidebar-service .widget-cta i {
    font-size: 40px;
    color: #E4097F;
    margin-bottom: 15px;
    display: block;
}

.sidebar-service .widget-cta h5 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 12px;
}

.sidebar-service .widget-cta p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 20px;
}

.sidebar-service .widget-cta .btn {
    width: 100%;
}

.sidebar-service .widget-contact {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
    padding: 25px;
}

.sidebar-service .widget-contact h5 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #222;
}

.sidebar-service .widget-contact .contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.sidebar-service .widget-contact .contact-item:last-child {
    margin-bottom: 0;
}

.sidebar-service .widget-contact .contact-item i {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: #fff5f9;
    color: #E4097F;
    border-radius: 50%;
    font-size: 16px;
    margin-right: 15px;
    flex-shrink: 0;
}

.sidebar-service .widget-contact .contact-item span {
    font-size: 15px;
    color: #444;
}

.sidebar-service .widget-contact .contact-item a {
    font-size: 15px;
    color: #444;
    transition: color 0.3s;
}

.sidebar-service .widget-contact .contact-item a:hover {
    color: #E4097F;
}

/* --- Service CTA Section --- */
.service-cta {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.service-cta .cta-content {
    position: relative;
    z-index: 2;
}

.service-cta .cta-content h2 {
    color: #fff;
    font-family: "Rubik", sans-serif;
    font-weight: 500;
    font-size: 36px;
    margin-bottom: 15px;
}

.service-cta .cta-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 18px;
    margin-bottom: 30px;
}

/* --- Hizmetlerimiz Page Specific --- */
.services-overview {
    padding: 80px 0;
}

.service-card-modern {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    margin-bottom: 30px;
    height: 100%;
}

.service-card-modern:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    transform: translateY(-8px);
}

.service-card-modern .card-img {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.service-card-modern .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card-modern:hover .card-img img {
    transform: scale(1.08);
}

.service-card-modern .card-img .card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.5) 100%);
    z-index: 1;
}

.service-card-modern .card-img .card-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background: rgba(228, 9, 127, 0.9);
    color: #fff;
    border-radius: 50%;
    font-size: 20px;
    z-index: 2;
}

.service-card-modern .card-body {
    padding: 30px;
}

.service-card-modern .card-body h4 {
    font-family: "Rubik", sans-serif;
    font-weight: 500;
    font-size: 20px;
    margin-bottom: 12px;
}

.service-card-modern .card-body h4 a {
    color: #222;
    transition: color 0.3s;
}

.service-card-modern .card-body h4 a:hover {
    color: #E4097F;
}

.service-card-modern .card-body p {
    font-size: 14px;
    color: #9b9b9b;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-card-modern .card-body .card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.service-card-modern .card-body .card-features li {
    padding: 5px 0;
    font-size: 14px;
    color: #555;
}

.service-card-modern .card-body .card-features li i {
    color: #E4097F;
    margin-right: 8px;
    font-size: 13px;
}

.service-card-modern .card-body .card-link {
    display: inline-flex;
    align-items: center;
    font-weight: 700;
    font-size: 14px;
    color: #E4097F;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
}

.service-card-modern .card-body .card-link i {
    margin-left: 8px;
    transition: transform 0.3s;
}

.service-card-modern .card-body .card-link:hover i {
    transform: translateX(5px);
}

/* --- Why Choose Section --- */
.why-choose {
    background: #f8f9fa;
    padding: 80px 0;
}

.why-choose-card {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.why-choose-card .wc-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    line-height: 60px;
    text-align: center;
    background: #fff;
    color: #E4097F;
    border-radius: 8px;
    font-size: 24px;
    margin-right: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.why-choose-card:hover .wc-icon {
    background: #E4097F;
    color: #fff;
    box-shadow: 0 8px 25px rgba(228, 9, 127, 0.25);
}

.why-choose-card .wc-body h6 {
    font-family: "Rubik", sans-serif;
    font-weight: 500;
    font-size: 17px;
    color: #222;
    margin-bottom: 6px;
}

.why-choose-card .wc-body p {
    font-size: 14px;
    color: #9b9b9b;
    margin-bottom: 0;
    line-height: 1.6;
}

/* ============================================
   Service Page - Inline Quote Card
   ============================================ */
.service-quote-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 2px solid #E4097F;
}

.service-quote-card .sqc-header {
    background: linear-gradient(135deg, #E4097F 0%, #B5076A 100%);
    padding: 25px 25px 20px;
    text-align: center;
    color: #ffffff;
}

.service-quote-card .sqc-header i {
    font-size: 28px;
    margin-bottom: 10px;
    display: block;
    opacity: 0.9;
}

.service-quote-card .sqc-header h4 {
    font-family: "Rubik", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
}

.service-quote-card .sqc-header p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
    line-height: 1.5;
}

.service-quote-card .sqc-body {
    padding: 20px 22px 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-quote-card .sqc-body .quote-form {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-quote-card .cta-input-group {
    margin-bottom: 12px;
}

.service-quote-card .cta-input-group .form-control {
    height: 44px;
    line-height: 44px;
    font-size: 13px;
    border-radius: 8px;
    padding-left: 38px;
    border: 1px solid #e0e0e0;
    background-color: #f9f9fb;
    margin-bottom: 0;
    box-shadow: none;
    color: #333;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.service-quote-card .cta-input-group .form-control:focus {
    border-color: #E4097F;
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(228, 9, 127, 0.08);
}

.service-quote-card .cta-input-group .form-control::placeholder {
    color: #aaa;
    font-size: 13px;
    text-transform: none;
}

.service-quote-card .cta-input-group i {
    font-size: 13px;
    left: 13px;
}

.service-quote-card .select-container {
    margin-bottom: 12px;
}

.service-quote-card .select-container .nice-select {
    height: 44px !important;
    line-height: 42px !important;
    font-size: 13px !important;
    border-radius: 8px !important;
}

.service-quote-card .sqc-submit {
    height: 46px;
    border-radius: 8px;
    font-family: "Rubik", sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0.3px;
    margin-top: auto;
    transition: all 0.3s ease;
}

.service-quote-card .sqc-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(228, 9, 127, 0.3);
}

.service-quote-card .contact-result {
    margin-top: 10px;
    font-size: 13px;
    text-align: center;
}

/* ============================================
   Inline Quote Form (Service Detail Pages)
   ============================================ */
.inline-quote-form {
    background: linear-gradient(135deg, #fdf2f8 0%, #ffffff 100%);
    border: 2px solid #E4097F;
    border-radius: 12px;
    padding: 25px;
    position: relative;
    overflow: hidden;
}

.inline-quote-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #E4097F, #B5076A);
}

.inline-quote-form .iqf-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(228, 9, 127, 0.12);
}

.inline-quote-form .iqf-header > i {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 10px;
    background: linear-gradient(135deg, #E4097F, #B5076A);
    color: #ffffff;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.inline-quote-form .iqf-header h5 {
    font-family: "Rubik", sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #222222;
    margin-bottom: 2px;
}

.inline-quote-form .iqf-header p {
    font-size: 13px;
    color: #888888;
    margin-bottom: 0;
    line-height: 1.4;
}

.inline-quote-form .cta-input-group {
    margin-bottom: 12px;
}

.inline-quote-form .cta-input-group .form-control {
    height: 46px;
    line-height: 46px;
    font-size: 14px;
    border-radius: 8px;
    padding-left: 40px;
    border: 1px solid #e0e0e0;
    background-color: #ffffff;
    margin-bottom: 0;
    box-shadow: none;
    color: #333;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.inline-quote-form .cta-input-group .form-control:focus {
    border-color: #E4097F;
    box-shadow: 0 0 0 3px rgba(228, 9, 127, 0.08);
}

.inline-quote-form .cta-input-group .form-control::placeholder {
    color: #aaa;
    font-size: 13px;
    text-transform: none;
}

.inline-quote-form .iqf-submit {
    height: 48px;
    border-radius: 8px;
    font-family: "Rubik", sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    margin-top: 4px;
}

.inline-quote-form .iqf-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(228, 9, 127, 0.3);
}

.inline-quote-form .contact-result {
    margin-top: 10px;
    font-size: 13px;
    text-align: center;
}

/* ================================================
   About Page - Professional Redesign
   ================================================ */

/* --- About Intro Section --- */
.about-intro {
    padding: 80px 0;
}

.about-intro .about-img-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.about-intro .about-img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.about-intro .about-img-wrapper .experience-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: linear-gradient(135deg, #E4097F 0%, #B5076A 100%);
    color: #fff;
    padding: 20px 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(228, 9, 127, 0.4);
}

.about-intro .about-img-wrapper .experience-badge .badge-num {
    font-family: "Rubik", sans-serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
    display: block;
}

.about-intro .about-img-wrapper .experience-badge .badge-text {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
    display: block;
}

.about-intro .about-text h2 {
    font-family: "Rubik", sans-serif;
    font-weight: 500;
    font-size: 32px;
    color: #222;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.about-intro .about-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #E4097F;
    border-radius: 2px;
}

.about-intro .about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
}

.about-intro .about-text p strong {
    color: #222;
}

/* --- About Stats Bar --- */
.about-stats {
    background: linear-gradient(135deg, #E4097F 0%, #B5076A 100%);
    padding: 60px 0;
}

.about-stats .stat-box {
    text-align: center;
    padding: 15px 10px;
    position: relative;
}

.about-stats .stat-box::after {
    content: '';
    position: absolute;
    right: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.about-stats .stat-box:last-child::after {
    display: none;
}

@media (max-width: 767px) {
    .about-stats .stat-box::after {
        display: none;
    }
}

.about-stats .stat-box .stat-icon {
    font-size: 30px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

.about-stats .stat-box .stat-num {
    font-family: "Rubik", sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
}

.about-stats .stat-box .stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 6px;
}

/* --- Mission / Vision / Values --- */
.about-values {
    padding: 80px 0;
    background: #f8f9fa;
}

.value-card-modern {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    height: 100%;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid #eee;
    position: relative;
    overflow: hidden;
}

.value-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #E4097F 0%, #B5076A 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.value-card-modern:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    transform: translateY(-8px);
    border-color: transparent;
}

.value-card-modern:hover::before {
    transform: scaleX(1);
}

.value-card-modern .vc-icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    background: linear-gradient(135deg, #fff5f9 0%, #ffe0ef 100%);
    color: #E4097F;
    border-radius: 50%;
    font-size: 32px;
    display: inline-block;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.value-card-modern:hover .vc-icon {
    background: linear-gradient(135deg, #E4097F 0%, #B5076A 100%);
    color: #fff;
    box-shadow: 0 10px 30px rgba(228, 9, 127, 0.3);
}

.value-card-modern h4 {
    font-family: "Rubik", sans-serif;
    font-weight: 500;
    font-size: 22px;
    color: #222;
    margin-bottom: 15px;
}

.value-card-modern p {
    font-size: 15px;
    color: #9b9b9b;
    line-height: 1.7;
    margin-bottom: 0;
}

/* --- Why Us Section (About Page) --- */
.about-why-us {
    padding: 80px 0;
}

.about-why-us .why-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.about-why-us .why-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border-color: transparent;
    transform: translateX(5px);
}

.about-why-us .why-item .why-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    line-height: 50px;
    text-align: center;
    background: linear-gradient(135deg, #fff5f9 0%, #ffe0ef 100%);
    color: #E4097F;
    border-radius: 10px;
    font-size: 20px;
    margin-right: 20px;
    transition: all 0.3s ease;
}

.about-why-us .why-item:hover .why-icon {
    background: linear-gradient(135deg, #E4097F 0%, #B5076A 100%);
    color: #fff;
}

.about-why-us .why-item h6 {
    font-family: "Rubik", sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #222;
    margin-bottom: 5px;
}

.about-why-us .why-item p {
    font-size: 14px;
    color: #9b9b9b;
    margin-bottom: 0;
    line-height: 1.6;
}

.about-why-us .why-img {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    aspect-ratio: 1 / 1;
    max-width: 520px;
    margin-left: auto;
}

.about-why-us .why-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 991.98px) {
    .about-why-us .why-img {
        max-width: 400px;
        margin: 0 auto;
    }
}

/* Service detail page content images */
.entry-bio img,
.detail-content > img,
.detail-content > .editable-image-wrap img {
    width: 100%;
    border-radius: 8px;
}

/* About section images - exclude bg-section backgrounds */
.about-img .about-img-warp {
    width: 100%;
}

/* CTA heading colors (for sections that still need explicit light text) */
.cta-light h3 {
    color: #fff;
}

.cta-light p {
    color: rgba(255, 255, 255, 0.8);
}

/* Header WhatsApp & Phone buttons */
.module-whatsapp {
    margin-right: 10px;
}

.module-whatsapp a {
    color: #fff;
    font-size: 20px;
}

.module-phone {
    margin-right: 15px;
}

.module-phone a {
    color: #fff;
    font-size: 18px;
}

/* WhatsApp floating button */
#whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    text-decoration: none;
}

#whatsapp-float i {
    color: #fff;
    font-size: 32px;
}

#whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

@media (max-width: 767px) {
    #whatsapp-float {
        bottom: 15px;
        right: 15px;
        width: 52px;
        height: 52px;
    }
    #whatsapp-float i {
        font-size: 28px;
    }
}

/* Footer WhatsApp button */
.btn-whatsapp {
    background: #25D366;
    border-color: #25D366;
    color: #fff;
}

.btn-whatsapp:hover {
    background: #1da851;
    border-color: #1da851;
    color: #fff;
}

/* Logo sizing - brand logo is taller than default template */
.header .navbar-brand .logo {
    width: auto;
    height: 60px;
}

@media only screen and (max-width: 991px) {
    .header .navbar-brand .logo {
        height: 50px;
    }
}

.footer .footer-logo {
    width: auto;
    height: 50px;
}

/* ================================================
   Section Spacing Fixes
   Template's extreme paddings were designed for
   overlapping elements we don't use.
   ================================================ */

/* Features section: template 440px was for CTA form overlap */
.features {
    padding-top: 80px;
    padding-bottom: 80px;
}

/* Cases/Gallery section: template 343px was for partner logo overlap */
.cases-clients {
    padding-top: 70px;
    padding-bottom: 70px;
}

/* Gallery cards: equal height */
.cases-standard .case-item {
    height: 100%;
}
.cases-standard .case-item .case-item-warp {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.cases-standard .case-item .case-img {
    height: 260px;
    flex-shrink: 0;
}
.cases-standard .case-item .case-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cases-standard .case-item .case-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.cases-standard .case-item .case-content .case-desc {
    flex: 1;
}

/* Owl carousel equal height items */
#cases-clients-1 .owl-stage {
    display: flex;
}
#cases-clients-1 .owl-item {
    display: flex;
}
#cases-clients-1 .owl-item .case-item {
    width: 100%;
}

/* CTA sections: template has padding-bottom: 0 */
.cta {
    padding-bottom: 70px;
}

/* Blog section: no base padding on mobile */
@media screen and (max-width: 991px) {
    .blog {
        padding: 70px 0;
    }
}

/* Services section: no padding on mobile */
@media screen and (max-width: 991px) {
    .services {
        padding-top: 70px;
        padding-bottom: 30px;
    }
}

/* Accordion/SSS: no padding on mobile */
@media screen and (max-width: 990px) {
    .accordion.accordion-3 {
        padding-top: 70px;
        padding-bottom: 50px;
    }
}

/* ================================================
   Owl Carousel Nav Arrow Fixes
   Original template uses missing 'Equita' font.
   Override with Font Awesome 5 arrows.
   ================================================ */
.cases-standard .carousel-navs .owl-nav .owl-prev::before {
    content: '\f104';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}

.cases-standard .carousel-navs .owl-nav .owl-next::before {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}

/* ================================================
   Back-to-top button: avoid overlap with WhatsApp float
   WhatsApp float = bottom:25px, height:60px → top edge at ~85px
   ================================================ */
#back-to-top {
    bottom: 100px;
}

@media (max-width: 767px) {
    #back-to-top {
        bottom: 80px;
    }
}

/* ================================================
   Navbar-fixed: keep icon colors on scroll
   Template turns module icons black on white bg.
   WhatsApp/phone icons should stay branded colors.
   ================================================ */
.navbar-fixed .module-whatsapp a {
    color: #fff !important;
}

.navbar-fixed .module-phone a {
    color: #fff !important;
}

.navbar-fixed .module-contact .btn.btn--primary {
    color: #ffffff;
    background-color: #E4097F;
    border-color: #E4097F;
}

.navbar-fixed .module-contact .btn.btn--primary:hover,
.navbar-fixed .module-contact .btn.btn--primary:focus {
    color: #ffffff;
    background-color: #C00768;
    border-color: #C00768;
}

/* ============================================
   CTA Quote Section
   ============================================ */
.cta-quote {
    overflow: visible;
}

.cta-quote-top {
    position: relative;
    padding: 80px 0 180px;
    background: #1b1a1a;
    overflow: hidden;
}

.cta-quote-top .bg-section {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.cta-quote-top .bg-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.cta-quote-top .container {
    position: relative;
    z-index: 1;
}

.cta-quote-subtitle {
    font-family: "Rubik", sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #E4097F;
    margin-bottom: 10px;
}

.cta-quote-title {
    font-family: "Rubik", sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0;
    line-height: 1.3;
}

@media (max-width: 991px) {
    .cta-quote-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
}

/* Steps */
.cta-steps {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

@media (max-width: 991px) {
    .cta-steps {
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .cta-steps {
        flex-wrap: wrap;
        gap: 15px;
    }
    .cta-step-arrow {
        display: none !important;
    }
}

.cta-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    min-width: 120px;
}

.cta-step-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #E4097F;
    color: #fff;
    font-family: "Rubik", sans-serif;
    font-weight: 700;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.cta-step > i {
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 10px;
}

.cta-step span {
    font-family: "Rubik", sans-serif;
    font-weight: 500;
    font-size: 15px;
    color: #ffffff;
    white-space: nowrap;
}

.cta-step-arrow {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 18px;
    margin-top: 10px;
}

/* Standalone Form Section (service detail pages - no image top) */
.cta-quote-section {
    padding: 60px 0 80px;
    background: #f5f5f5;
}

/* Form Card */
.cta-quote-form-wrap {
    margin-top: -120px;
    position: relative;
    z-index: 2;
    padding-bottom: 80px;
}

.cta-quote-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    overflow: hidden;
}

.cta-form-body {
    padding: 40px 40px 35px;
}

@media (max-width: 575px) {
    .cta-form-body {
        padding: 25px 20px 20px;
    }
}

.cta-form-title {
    font-family: "Rubik", sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #222222;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cta-form-title i {
    color: #E4097F;
    font-size: 20px;
}

.cta-form-section {
    margin-bottom: 15px;
}

.cta-input-group {
    position: relative;
    margin-bottom: 15px;
}

.cta-input-group i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #b0b0b0;
    font-size: 14px;
    z-index: 2;
    pointer-events: none;
}

.cta-quote-card .cta-input-group .form-control {
    padding-left: 40px;
    height: 48px;
    line-height: 48px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    font-family: "Roboto", sans-serif;
    color: #333333;
    background-color: #f9f9fb;
    margin-bottom: 0;
    box-shadow: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.cta-quote-card .cta-input-group textarea.form-control {
    height: 48px;
    min-height: 48px;
    padding-top: 13px;
    line-height: 1.4;
    resize: none;
}

.cta-quote-card .cta-input-group .form-control:focus {
    border-color: #E4097F;
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(228, 9, 127, 0.08);
    outline: none;
}

.cta-quote-card .cta-input-group .form-control::placeholder {
    color: #aaaaaa;
    font-size: 13px;
    text-transform: none;
}

/* ============================================
   Global Nice-Select & Select Overrides
   ============================================ */
.select-container {
    position: relative;
    margin-bottom: 15px;
}

.select-container select.form-control {
    height: 48px;
    line-height: 48px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    font-family: "Roboto", sans-serif;
    color: #333333;
    background-color: #f9f9fb;
    margin-bottom: 0;
    box-shadow: none;
    padding-left: 16px;
    padding-right: 40px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: pointer;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.select-container select.form-control:focus {
    border-color: #E4097F;
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(228, 9, 127, 0.08);
    outline: none;
}

.nice-select {
    height: 48px !important;
    line-height: 46px !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 8px !important;
    font-size: 14px !important;
    font-family: "Roboto", sans-serif !important;
    color: #333333 !important;
    background-color: #f9f9fb !important;
    margin-bottom: 0 !important;
    box-shadow: none !important;
    padding-left: 16px !important;
    padding-right: 40px !important;
    width: 100% !important;
    float: none !important;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease !important;
}

.nice-select:hover {
    border-color: #cccccc !important;
}

.nice-select:focus,
.nice-select.open {
    border-color: #E4097F !important;
    background-color: #ffffff !important;
    box-shadow: 0 0 0 3px rgba(228, 9, 127, 0.08) !important;
}

.nice-select::after {
    border-bottom: 2px solid #999 !important;
    border-right: 2px solid #999 !important;
    height: 7px !important;
    width: 7px !important;
    right: 16px !important;
    margin-top: -5px !important;
    transition: all 0.25s ease !important;
}

.nice-select.open::after {
    border-color: #E4097F !important;
}

.nice-select .current {
    color: #333333 !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    text-transform: none !important;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.nice-select .list {
    width: 100% !important;
    border-radius: 10px !important;
    border: none !important;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.04) !important;
    margin-top: 6px !important;
    padding: 6px 0 !important;
    overflow: hidden !important;
    z-index: 99 !important;
    max-height: 260px;
    overflow-y: auto !important;
}

.nice-select .list::-webkit-scrollbar {
    width: 5px;
}

.nice-select .list::-webkit-scrollbar-track {
    background: #f5f5f5;
    border-radius: 0 10px 10px 0;
}

.nice-select .list::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 10px;
}

.nice-select .list::-webkit-scrollbar-thumb:hover {
    background: #ccc;
}

.nice-select .option {
    font-size: 14px !important;
    font-family: "Roboto", sans-serif !important;
    color: #555555 !important;
    padding: 10px 18px !important;
    min-height: auto !important;
    line-height: 1.5 !important;
    text-transform: none !important;
    font-weight: 400 !important;
    border-left: 3px solid transparent;
    transition: all 0.2s ease !important;
}

.nice-select .option:hover,
.nice-select .option.focus {
    background-color: rgba(228, 9, 127, 0.05) !important;
    color: #E4097F !important;
    border-left-color: #E4097F;
}

.nice-select .option.selected {
    background-color: rgba(228, 9, 127, 0.08) !important;
    color: #E4097F !important;
    font-weight: 600 !important;
    border-left-color: #E4097F;
}

.nice-select .option.selected.focus {
    background-color: rgba(228, 9, 127, 0.1) !important;
    color: #E4097F !important;
}

.cta-submit-btn {
    height: 52px;
    border-radius: 8px;
    font-family: "Rubik", sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(228, 9, 127, 0.3);
}

/* Form section title inside CTA card */
.cta-form-section-title {
    font-family: "Rubik", sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #999999;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #f0f0f0;
}

/* ============================================
   Teklif Al Page Form Styles
   ============================================ */
.quote-form .form-section {
    margin-bottom: 25px;
}

.quote-form .form-heading h5 {
    font-family: "Rubik", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #222222;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
    position: relative;
}

.quote-form .form-heading h5::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: #E4097F;
}

.quote-form label {
    font-family: "Roboto", sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #555555;
    margin-bottom: 6px;
    display: block;
}

.quote-form .form-control {
    height: 48px;
    line-height: 48px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    font-family: "Roboto", sans-serif;
    color: #333333;
    background-color: #f9f9fb;
    margin-bottom: 15px;
    padding-left: 16px;
    box-shadow: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.quote-form textarea.form-control {
    height: auto;
    min-height: 120px;
    line-height: 1.6;
    padding-top: 12px;
    resize: vertical;
}

.quote-form .form-control:focus {
    border-color: #E4097F;
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(228, 9, 127, 0.08);
    outline: none;
}

.quote-form .form-control::placeholder {
    color: #aaaaaa;
    font-size: 13px;
    text-transform: none;
}

.quote-form .select-container {
    margin-bottom: 15px;
}

.quote-form .select-container select.form-control {
    margin-bottom: 0;
}

.quote-form .btn--block {
    height: 52px;
    border-radius: 8px;
    font-family: "Rubik", sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-top: 10px;
}

.quote-form .btn--block:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(228, 9, 127, 0.3);
}

.quote-form .contact-result {
    margin-top: 15px;
    font-size: 14px;
    text-align: center;
}

/* Sidebar */
.cta-sidebar {
    background: linear-gradient(135deg, #1b1a1a 0%, #2d2d2d 100%);
    height: 100%;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

@media (max-width: 991px) {
    .cta-sidebar {
        padding: 40px 30px;
        border-radius: 0 0 12px 12px;
    }
}

.cta-sidebar-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #E4097F, #B5076A);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.cta-sidebar-icon i {
    font-size: 28px;
    color: #ffffff;
}

.cta-sidebar h5 {
    font-family: "Rubik", sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.cta-sidebar p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 20px;
}

.cta-phone-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    color: #1b1a1a;
    padding: 12px 28px;
    border-radius: 8px;
    font-family: "Rubik", sans-serif;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
    margin-bottom: 25px;
}

.cta-phone-btn i {
    color: #E4097F;
}

.cta-phone-btn:hover {
    background: #E4097F;
    color: #ffffff;
    transform: translateY(-2px);
    text-decoration: none;
}

.cta-phone-btn:hover i {
    color: #ffffff;
}

.cta-sidebar-features {
    width: 100%;
}

.cta-sidebar-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 500;
    padding: 6px 0;
    justify-content: center;
}

.cta-sidebar-feature i {
    color: #E4097F;
    font-size: 12px;
}

/* --- Homepage Feature Cards Equal Height --- */
.features .row {
    display: flex;
    flex-wrap: wrap;
}
.features .row > [class*="col-"] {
    display: flex;
}
.features .feature-panel {
    display: flex;
    flex-direction: column;
    width: 100%;
}
.features .feature-panel .feature-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.features .feature-panel .feature-content p {
    flex: 1;
}

/* --- Blog Grid Cards Equal Height --- */
.blog-grid .row {
    display: flex;
    flex-wrap: wrap;
}
.blog-grid .row > [class*="col-"] {
    display: flex;
}
.blog-grid .blog-entry {
    display: flex;
    flex-direction: column;
    width: 100%;
}
.blog-grid .blog-entry .entry-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.blog-grid .blog-entry .entry-bio {
    flex: 1;
}

/* ================================================
   Compact Footer
   ================================================ */
.footer-compact .footer-top {
    display: none;
}
.footer-compact .footer-center {
    padding-top: 50px !important;
    padding-bottom: 10px;
}
.footer-compact .footer-widget {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-bottom: 30px !important;
}

/* Logo & About */
.footer-compact .footer-logo-wrap {
    margin-bottom: 16px;
}
.footer-compact .footer-logo-wrap img {
    height: 42px;
    width: auto;
}
.footer-compact .widget-about > p {
    color: #9b9b9b;
    font-size: 13px;
    line-height: 22px;
    margin-bottom: 16px;
}

/* Social icons */
.footer-social {
    display: flex;
    gap: 8px;
}
.footer-social a {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9b9b9b;
    font-size: 13px;
    transition: all 0.25s ease;
}
.footer-social a:hover {
    background: #E4097F;
    color: #fff;
}

/* Widget titles */
.footer-compact .footer-widget-title h5 {
    font-size: 14px;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Link lists */
.footer-compact .widget-links ul li a {
    font-size: 13px;
    line-height: 28px;
}

/* Contact list */
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 13px;
    color: #9b9b9b;
    line-height: 20px;
}
.footer-contact-list li i {
    color: #E4097F;
    font-size: 13px;
    margin-top: 3px;
    flex-shrink: 0;
    width: 14px;
    text-align: center;
}
.footer-contact-list li a,
.footer-contact-list li span {
    color: #9b9b9b;
    transition: color 0.2s;
}
.footer-contact-list li a:hover {
    color: #E4097F;
}

/* CTA mini buttons */
.footer-cta-btns {
    display: flex;
    gap: 8px;
    margin-top: 4px;
}
.footer-cta-btns .btn {
    font-size: 12px;
    padding: 0 14px;
    line-height: 32px;
    height: 32px;
    width: auto;
    border-radius: 5px;
    border-width: 1px;
}

/* Kill template's excessive contact widget spacing */
.footer-compact .widget-contact .widget-content p {
    margin-bottom: 8px;
}
.footer-compact .widget-contact .widget-content .phone {
    margin-bottom: 0;
}
.footer-contact-list li:last-child {
    margin-bottom: 0;
}

/* Copyright bar */
.footer-compact .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-compact .footer-bottom-inner {
    padding: 16px 0;
    text-align: center;
    font-size: 12px;
    color: #777;
    font-family: "Roboto", sans-serif;
}
.footer-compact .footer-copyright {
    padding: 0;
}

/* Mobile tweaks */
@media (max-width: 767px) {
    .footer-compact .footer-center {
        padding-top: 36px !important;
    }
    .footer-compact .footer-widget {
        margin-bottom: 24px !important;
    }
    .footer-compact .widget-about {
        margin-bottom: 28px !important;
    }
}

/* ================================================
   Blog Listing Page
   ================================================ */
.blog-listing {
    background: #f8f8f8;
}

/* Section header */
.blog-listing-subtitle {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #E4097F;
    margin-bottom: 8px;
}
.blog-listing-title {
    font-family: "Rubik", sans-serif;
    font-size: 32px;
    font-weight: 600;
    color: #1b1a1a;
    margin-bottom: 12px;
}
.blog-listing-desc {
    color: #666;
    font-size: 15px;
    margin: 0;
}

/* Blog Card */
.blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.blog-card:hover {
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    transform: translateY(-4px);
}

/* Image */
.blog-card-img-wrap {
    display: block;
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}
.blog-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.blog-card:hover .blog-card-img-wrap img {
    transform: scale(1.06);
}

/* Category tag badge */
.blog-card-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #E4097F;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 20px;
}

/* Body */
.blog-card-body {
    padding: 22px 24px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card-date {
    font-size: 12px;
    color: #aaa;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.blog-card-date i {
    color: #E4097F;
}

.blog-card-title {
    font-family: "Rubik", sans-serif;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.45;
    margin-bottom: 10px;
}
.blog-card-title a {
    color: #1b1a1a;
    transition: color 0.2s;
}
.blog-card-title a:hover {
    color: #E4097F;
}

.blog-card-excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.65;
    flex: 1;
    margin-bottom: 18px;
}

.blog-card-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: #E4097F;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: gap 0.2s;
}
.blog-card-more:hover {
    color: #B5076A;
    gap: 10px;
}
.blog-card-more i {
    font-size: 11px;
}

/* ===== Features Heading (heading-4) Fix ===== */
.features .heading.heading-4 {
    margin-bottom: 48px;
}
.features .heading.heading-4 .row {
    align-items: flex-start;
    row-gap: 20px;
}
.features .heading.heading-4 .heading-subtitle {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #E4097F;
    margin-bottom: 12px;
}
.features .heading.heading-4 .heading-title {
    font-size: 30px;
    line-height: 1.3;
    font-weight: 700;
    color: #1b1a1a;
    margin-bottom: 0;
}
.features .heading.heading-4 .col-lg-6:last-child {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.features .heading.heading-4 .heading-desc {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
    margin-top: 0;
}
.features .actions-container {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.features .actions-container .btn {
    margin-right: 0;
    margin-bottom: 0;
    width: auto;
    height: 44px;
    line-height: 44px;
    padding: 0 28px;
    font-size: 13px;
    border-radius: 4px;
}
.features .actions-container .employee-info {
    display: flex;
    align-items: center;
    gap: 10px;
}
.features .actions-container .employee-info .employee-body h6 {
    font-size: 18px;
    font-weight: 700;
    color: #E4097F;
    margin-bottom: 0;
    line-height: 1.2;
    letter-spacing: 0.5px;
}
.features .actions-container .employee-info .employee-body p {
    font-size: 13px;
    color: #999;
    margin-bottom: 0;
}

/* Tablet */
@media (max-width: 991.98px) {
    .features .heading.heading-4 {
        text-align: center;
    }
    .features .heading.heading-4 .col-lg-6:last-child {
        align-items: center;
    }
    .features .heading.heading-4 .heading-title {
        font-size: 26px;
    }
    .features .heading.heading-4 .heading-desc {
        margin-top: 0;
    }
    .features .actions-container {
        justify-content: center;
    }
}
/* Mobile */
@media (max-width: 575.98px) {
    .features .heading.heading-4 .heading-title {
        font-size: 22px;
    }
    .features .actions-container {
        flex-direction: column;
        gap: 14px;
    }
    .features .actions-container .btn {
        width: 100%;
        text-align: center;
    }
}

/* ===== Page Title Banner ===== */
.page-title.bg-overlay-dark:before {
    background-image: none;
    background-color: rgba(27, 26, 26, 0.6);
}
.page-title .title {
    padding: 180px 0 80px;
}
.page-title .title .title-heading {
    margin-bottom: 16px;
}
.page-title .title .title-heading h1 {
    font-size: 42px;
    line-height: 1.2;
    word-break: break-word;
}
.page-title .title .breadcrumb {
    margin-bottom: 20px;
    line-height: normal;
}
.page-title .title .breadcrumb,
.page-title .title .breadcrumb a {
    line-height: normal;
}
.page-title .title.text-lg-left .breadcrumb {
    justify-content: flex-start;
}
@media (max-width: 991.98px) {
    .page-title .title {
        padding: 150px 0 60px;
    }
    .page-title .title .title-heading h1 {
        font-size: 32px;
    }
    .page-title .title.text-lg-left {
        text-align: center;
    }
    .page-title .title.text-lg-left .breadcrumb {
        justify-content: center;
    }
}
@media (max-width: 575.98px) {
    .page-title .title {
        padding: 130px 0 40px;
    }
    .page-title .title .title-heading {
        margin-bottom: 12px;
    }
    .page-title .title .title-heading h1 {
        font-size: 26px;
    }
}

/* ===== Blog Article (Detay) ===== */
.blog-article-section {
    padding: 60px 0 80px;
    background: #fff;
}

/* Post meta in page-title */
.blog-post-meta {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 16px;
}
.blog-post-meta span {
    color: rgba(255,255,255,0.85);
    font-size: 14px;
}
.blog-post-meta span i {
    margin-right: 5px;
}

/* Article */
.blog-article {
    background: #fff;
}
.blog-article-hero {
    margin-bottom: 32px;
    border-radius: 12px;
    overflow: hidden;
}
.blog-article-hero img {
    width: 100%;
    display: block;
}

/* Article content — clean blog typography */
.blog-article-content {
    font-size: 16px;
    line-height: 1.85;
    color: #444;
}
.blog-article-content h2 {
    font-size: 24px;
    font-weight: 700;
    color: #222;
    margin: 36px 0 16px;
}
.blog-article-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #222;
    margin: 30px 0 14px;
}
.blog-article-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 24px 0 12px;
}
.blog-article-content p {
    margin-bottom: 18px;
}
.blog-article-content ul,
.blog-article-content ol {
    margin-bottom: 20px;
    padding-left: 24px;
}
.blog-article-content li {
    margin-bottom: 8px;
}
.blog-article-content strong {
    color: #222;
}
.blog-article-content blockquote {
    border-left: none;
    margin: 28px 0;
    padding: 24px 28px;
    background: #f8f9fa;
    border-radius: 8px;
    font-style: italic;
    color: #555;
    position: relative;
}
.blog-article-content blockquote::before {
    content: "\201C";
    font-family: Georgia, serif;
    font-size: 48px;
    color: #E4097F;
    position: absolute;
    top: 8px;
    left: 16px;
    line-height: 1;
    opacity: 0.3;
}
.blog-article-content blockquote p {
    margin-bottom: 0;
    padding-left: 24px;
}
.blog-article-content img {
    max-width: 100%;
    border-radius: 8px;
    margin: 20px 0;
}
.blog-article-content a {
    color: #E4097F;
    text-decoration: underline;
}
.blog-article-content a:hover {
    color: #B5076A;
}

/* Share */
.blog-article-share {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid #eee;
}
.share-label {
    font-weight: 700;
    font-size: 14px;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.share-buttons {
    display: flex;
    gap: 8px;
}
.share-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    transition: transform 0.2s, opacity 0.2s;
}
.share-btn:hover {
    transform: translateY(-2px);
    color: #fff;
    opacity: 0.85;
}
.share-fb { background: #1877f2; }
.share-tw { background: #1da1f2; }
.share-wa { background: #25d366; }
.share-li { background: #0a66c2; }

/* Author Box */
.blog-author-box {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 32px;
    padding: 24px;
    background: #f9f9f9;
    border-radius: 12px;
}
.author-avatar {
    width: 64px;
    height: 64px;
    min-width: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #E4097F, #B5076A);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
}
.author-info h5 {
    margin-bottom: 4px;
    font-size: 16px;
    font-weight: 700;
    color: #222;
}
.author-info p {
    margin: 0;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* Sidebar */
.blog-sidebar {
    position: sticky;
    top: 100px;
}
.sidebar-widget {
    margin-bottom: 30px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 24px;
}
.sidebar-widget-title {
    font-size: 16px;
    font-weight: 700;
    color: #222;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #E4097F;
}

/* Sidebar links */
.sidebar-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.sidebar-links li {
    margin-bottom: 0;
}
.sidebar-links li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 0;
    font-size: 14px;
    font-weight: 500;
    color: #444;
    border-bottom: 1px solid #f0f0f0;
    transition: color 0.2s, padding-left 0.2s;
}
.sidebar-links li:last-child a {
    border-bottom: none;
}
.sidebar-links li a:hover {
    color: #E4097F;
    padding-left: 4px;
}
.sidebar-links li a i {
    font-size: 10px;
    color: #E4097F;
}

/* Sidebar recent posts */
.sidebar-recent-posts {}
.recent-post-item {
    display: flex;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s;
}
.recent-post-item:last-child {
    border-bottom: none;
}
.recent-post-item:hover {
    color: inherit;
}
.recent-post-item:hover h6 {
    color: #E4097F;
}
.rp-img {
    width: 72px;
    min-width: 72px;
    height: 54px;
    border-radius: 6px;
    overflow: hidden;
}
.rp-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.rp-content h6 {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
    line-height: 1.4;
    transition: color 0.2s;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.rp-content span {
    font-size: 12px;
    color: #999;
}
.rp-content span i {
    margin-right: 4px;
}

/* Sidebar CTA */
.sidebar-cta {
    background: linear-gradient(135deg, #E4097F 0%, #B5076A 100%);
    border: none;
    text-align: center;
    color: #fff;
}
.sidebar-cta-inner i {
    font-size: 36px;
    margin-bottom: 14px;
    opacity: 0.9;
}
.sidebar-cta-inner h5 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 10px;
}
.sidebar-cta-inner p {
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    margin-bottom: 18px;
    line-height: 1.5;
}
.sidebar-cta .btn--primary {
    background: #fff;
    color: #E4097F;
    width: 100%;
    margin-bottom: 12px;
}
.sidebar-cta .btn--primary:hover {
    background: rgba(255,255,255,0.9);
}
.sidebar-phone {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
}
.sidebar-phone:hover {
    color: rgba(255,255,255,0.85);
}

/* Related Posts */
.blog-related {
    padding: 60px 0 80px;
    background: #f8f8f8;
}
.blog-related-title {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 36px;
    color: #222;
}

/* Responsive */
@media (max-width: 991px) {
    .blog-article-section {
        padding: 40px 0 50px;
    }
    .blog-sidebar {
        position: static;
        margin-top: 40px;
    }
    .blog-post-meta {
        flex-wrap: wrap;
        gap: 12px;
    }
}
@media (max-width: 575px) {
    .blog-article-content {
        font-size: 15px;
    }
    .blog-author-box {
        flex-direction: column;
        text-align: center;
    }
    .blog-article-share {
        flex-direction: column;
        align-items: flex-start;
    }
}
