/*
==========================================================================
  Chimeneas House - Custom Styles
  Optimized for visual impact and SEO performance
  Location: Bogotá, La Calera, Chía - Colombia
==========================================================================
*/

/* ========== Variables ========== */
:root {
    --primary: #e62b4a;
    --primary-dark: #c41e3a;
    --secondary: #1a1a2e;
    --accent: #ff6b35;
    --gold: #f5a623;
    --dark: #0f0f1a;
    --light: #f8f9fa;
    --gradient-fire: linear-gradient(135deg, #e62b4a 0%, #ff6b35 50%, #f5a623 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    --shadow-sm: 0 4px 15px rgba(0,0,0,0.1);
    --shadow-md: 0 8px 25px rgba(0,0,0,0.15);
    --shadow-lg: 0 15px 40px rgba(0,0,0,0.2);
    --radius-sm: 10px;
    --radius-md: 15px;
    --radius-lg: 20px;
    --radius-full: 50px;
    --transition: all 0.3s ease;
}

/* ========== Global Styles ========== */
* {
    font-family: 'Poppins', sans-serif;
}

body {
    overflow-x: hidden;
    color: #333;
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    transition: var(--transition);
}

/* ========== Navbar ========== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background: rgba(15, 15, 26, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 9999;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 10px 5%;
    background: rgba(15, 15, 26, 0.98);
    box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.navbar .logo img {
    height: 45px;
    transition: var(--transition);
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
    align-items: center;
}

.nav-menu .nav-item {
    list-style: none;
}

.nav-menu .nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: color 0.3s;
    padding: 5px 0;
}

.nav-menu .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-fire);
    transition: width 0.3s;
}

.nav-menu .nav-link:hover {
    color: var(--primary);
}

.nav-menu .nav-link:hover::after {
    width: 100%;
}

.nav-menu .nav-link.cta-link {
    background: var(--gradient-fire);
    padding: 10px 25px;
    border-radius: var(--radius-full);
    color: #fff;
    font-weight: 600;
    font-size: 13px;
}

.nav-menu .nav-link.cta-link::after {
    display: none;
}

.nav-menu .nav-link.cta-link:hover {
    transform: scale(1.05);
    color: #fff;
    box-shadow: 0 5px 20px rgba(230,43,74,0.4);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    padding: 5px;
    transition: var(--transition);
}

.nav-toggle:hover {
    color: var(--primary);
}

/* ========== Hero Slider ========== */
.main-slider-one {
    margin-top: 75px;
}

.main-slider-one__item {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.main-slider-one__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
}

.main-slider-one__bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15,15,26,0.85) 0%, rgba(230,43,74,0.3) 100%);
}

.main-slider-one__tagline {
    color: var(--gold);
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.main-slider-one__title {
    color: #fff;
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

.main-slider-one__desc {
    color: #ddd;
    font-size: 18px;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.main-slider-one__desc strong {
    color: var(--gold);
}

/* ========== CTA Buttons ========== */
.common_btn.red_bg {
    background: var(--gradient-fire);
    color: #fff !important;
    padding: 16px 40px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    text-decoration: none;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 25px rgba(230,43,74,0.4);
    transition: var(--transition);
    border: none;
}

.common_btn.red_bg:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(230,43,74,0.6);
}

.common_btn.red_bg span {
    color: #fff;
}

/* ========== Section Headers ========== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .sub_title {
    background: var(--gradient-fire);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 10px;
}

.section-header .sec_title {
    font-weight: 700;
    font-size: 36px;
    color: var(--secondary);
    margin-bottom: 15px;
}

.section-header .sec_desc {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.7;
}

/* ========== Services Section ========== */
.service_section {
    background: var(--gradient-dark);
    padding: 100px 0;
}

.service_section .sub_title {
    background: var(--gradient-fire);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.service_section .sec_title {
    color: #fff;
    font-weight: 700;
}

.service_section .sec_desc {
    color: #ccc;
}

.service_section .phone-link {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}

.service_section .phone-link:hover {
    color: var(--gold);
}

.service_section .promo-text {
    color: #ccc;
    max-width: 600px;
    margin: 0 auto 50px;
}

.service_section .promo-text strong {
    color: var(--gold);
}

/* Service Cards */
.icon_box_1 {
    margin-bottom: 30px;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.icon_box_1 .front,
.icon_box_1 .back {
    border-radius: var(--radius-md);
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.icon_box_1 .back {
    background: var(--gradient-fire);
    border-color: transparent;
}

.icon_box_1 .front img,
.icon_box_1 .back img {
    border-radius: var(--radius-sm);
    object-fit: cover;
    width: 100%;
    max-width: 300px;
    height: 200px;
}

.icon_box_1 .front h3,
.icon_box_1 .back h3 {
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    margin-top: 15px;
}

/* ========== Why Choose Us Section ========== */
.why-us-section {
    background: #fff;
    padding: 100px 0;
}

.why-us-section .section-title {
    color: var(--secondary);
    font-weight: 700;
    font-size: 36px;
    margin-bottom: 15px;
}

.why-us-section .section-subtitle {
    color: #666;
    max-width: 600px;
    margin: 0 auto 60px;
    font-size: 16px;
}

.why-us-card {
    text-align: center;
    padding: 30px 20px;
    transition: var(--transition);
    border-radius: var(--radius-md);
}

.why-us-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.why-us-card .icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-fire);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: #fff;
    box-shadow: 0 8px 25px rgba(230,43,74,0.3);
    transition: var(--transition);
}

.why-us-card:hover .icon-circle {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(230,43,74,0.5);
}

.why-us-card h4 {
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 10px;
    font-size: 18px;
}

.why-us-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
}

/* ========== About Agency Section ========== */
.ab_agency {
    background: var(--light);
    padding: 100px 0 150px;
}

.ab_agency .sub_title {
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
}

.ab_agency .sec_title {
    color: var(--secondary);
    font-weight: 700;
}

.ab_agency .sec_desc {
    color: #555;
    line-height: 1.8;
    font-size: 16px;
}

.ab_agency .sec_desc strong {
    color: var(--secondary);
}

/* ========== Video Section ========== */
.what_wedo .sub_title {
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 14px;
}

.what_wedo .sec_title {
    font-weight: 700;
}

/* ========== Coverage Section ========== */
.coverage-section {
    background: var(--dark);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.coverage-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(230,43,74,0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.coverage-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245,166,35,0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.coverage-section .section-title {
    color: #fff;
    font-weight: 700;
    font-size: 36px;
    margin-bottom: 15px;
}

.coverage-section .section-subtitle {
    color: #aaa;
    max-width: 600px;
    margin: 0 auto 60px;
}

.coverage-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

.coverage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-fire);
}

.coverage-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(230,43,74,0.2);
    background: rgba(255,255,255,0.08);
}

.coverage-card .icon {
    font-size: 48px;
    background: var(--gradient-fire);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
    display: inline-block;
}

.coverage-card h3 {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    margin: 15px 0 10px;
}

.coverage-card p {
    color: #aaa;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

/* ========== Portfolio Section ========== */
.porfolio {
    padding: 100px 0;
}

.porfolio .sub_title {
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 14px;
}

.porfolio .sec_title {
    font-weight: 700;
}

.singlefolio {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.singlefolio:hover {
    box-shadow: var(--shadow-lg);
}

.singlefolio:after {
    background: rgba(230,43,74,0.85);
    border-radius: var(--radius-md);
}

/* ========== Fun Facts Section ========== */
.funfact {
    background: var(--gradient-dark);
    padding: 80px 0 100px;
}

.singlefunfact h1,
.singlefunfact h2 {
    background: var(--gradient-fire);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.singlefunfact h3 {
    color: #ccc;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
}

/* ========== Testimonials Section ========== */
.testimonials-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8ecef 100%);
    padding: 100px 0;
}

.testimonials-section .section-title {
    color: var(--secondary);
    font-weight: 700;
    font-size: 36px;
    margin-bottom: 15px;
}

.testimonials-section .section-subtitle {
    color: #666;
    max-width: 600px;
    margin: 0 auto 60px;
}

.testimonial-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    position: relative;
    margin-bottom: 30px;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
}

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

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 80px;
    color: rgba(230,43,74,0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card p {
    color: #555;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 15px;
}

.testimonial-card .client-name {
    font-weight: 700;
    color: var(--secondary);
    font-size: 16px;
}

.testimonial-card .client-location {
    color: var(--primary);
    font-size: 13px;
    font-weight: 500;
}

.stars {
    color: var(--gold);
    margin-bottom: 15px;
    font-size: 18px;
}

/* ========== Trust Client Section ========== */
.trustClient .abci_content {
    border-radius: var(--radius-md);
}

.trustClient .abci_content h2 {
    font-weight: 700;
}

/* ========== Ready/CTA Section ========== */
.ready {
    background: var(--gradient-fire);
    padding: 60px 0;
}

.ready .sec_title {
    color: #fff;
    font-weight: 700;
    margin: 0;
}

.ready .sec_subtitle {
    color: rgba(255,255,255,0.9);
    margin: 10px 0 0;
    font-size: 16px;
}

.ready .common_btn {
    background: #fff;
    color: var(--primary) !important;
    border-radius: var(--radius-full);
    padding: 16px 40px;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    transition: var(--transition);
}

.ready .common_btn span {
    color: var(--primary);
}

.ready .common_btn:hover {
    background: var(--secondary);
    color: #fff !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.ready .common_btn:hover span {
    color: #fff;
}

/* ========== Footer ========== */
.footer_1 {
    background: var(--dark);
    position: relative;
}

.footer_1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-fire);
}

.footer_1 .widget_title {
    position: relative;
    padding-bottom: 15px;
}

.footer_1 .widget_title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-fire);
    border-radius: 2px;
}

.footer_1 .aboutwidget p {
    line-height: 1.8;
}

.footer_1 .contact_widgets .phone-footer {
    color: var(--primary);
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.footer_1 .contact_widgets .phone-footer:hover {
    color: var(--accent);
}

.footer_1 .copyright {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 30px 0;
    color: #aaa;
    font-size: 14px;
}

.footer_1 .copyright a {
    color: var(--primary);
    text-decoration: none;
}

.footer_1 .copyright a:hover {
    color: var(--accent);
}

.footer_1 .social_widget ul li {
    margin-bottom: 12px;
}

.footer_1 .social_widget ul li a {
    transition: var(--transition);
    padding: 5px 0;
    display: inline-block;
}

.footer_1 .social_widget ul li a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer_1 .social_widget ul li a i {
    color: var(--primary);
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

/* ========== WhatsApp Widget ========== */
.whatsapp_chat_support {
    z-index: 9998;
}

/* ========== Back to Top ========== */
#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-fire);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(230,43,74,0.4);
    transition: var(--transition);
    z-index: 9997;
    opacity: 0;
    visibility: hidden;
}

#backToTop.visible {
    opacity: 1;
    visibility: visible;
}

#backToTop:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(230,43,74,0.6);
}

/* ========== Animations ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-left {
    animation: fadeInLeft 0.6s ease forwards;
}

.pulse-animation {
    animation: pulse 2s infinite;
}

/* ========== Utility Classes ========== */
.text-gradient {
    background: var(--gradient-fire);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-white {
    color: #fff !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mt-30 {
    margin-top: 30px;
}

/* ========== Responsive Styles ========== */

/* Tablet */
@media (max-width: 991px) {
    .main-slider-one__title {
        font-size: 38px;
    }

    .coverage-card {
        margin-bottom: 20px;
    }

    .why-us-card {
        margin-bottom: 30px;
    }

    .section-header .sec_title,
    .coverage-section .section-title,
    .testimonials-section .section-title,
    .why-us-section .section-title {
        font-size: 30px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 75px;
        left: 0;
        right: 0;
        background: rgba(15,15,26,0.98);
        flex-direction: column;
        padding: 20px 30px;
        gap: 15px;
        border-top: 1px solid rgba(255,255,255,0.1);
        box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu .nav-item {
        text-align: center;
    }

    .main-slider-one {
        margin-top: 70px;
    }

    .main-slider-one__item {
        min-height: 70vh;
    }

    .main-slider-one__title {
        font-size: 28px;
        line-height: 1.3;
    }

    .main-slider-one__tagline {
        font-size: 13px;
        letter-spacing: 2px;
    }

    .main-slider-one__desc {
        font-size: 15px;
    }

    .service_section,
    .why-us-section,
    .ab_agency,
    .coverage-section,
    .testimonials-section,
    .porfolio {
        padding: 60px 0;
    }

    .coverage-card {
        margin-bottom: 20px;
    }

    .testimonial-card {
        margin-bottom: 20px;
        padding: 30px 25px;
    }

    .why-us-card {
        margin-bottom: 20px;
    }

    .common_btn.red_bg {
        padding: 14px 30px;
        font-size: 13px;
    }

    .ready .sec_title {
        font-size: 24px;
    }

    .ready .common_btn {
        margin-top: 20px;
        display: inline-block;
    }

    .footer_1 .contact_widgets,
    .footer_1 .social_widget {
        margin-top: 30px;
    }

    #backToTop {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .main-slider-one__title {
        font-size: 24px;
    }

    .icon_box_1 .front img,
    .icon_box_1 .back img {
        max-width: 100%;
        height: 160px;
    }

    .section-header .sec_title,
    .coverage-section .section-title,
    .testimonials-section .section-title,
    .why-us-section .section-title {
        font-size: 26px;
    }
}

/* ==========================================================================
   SERVICES PAGE STYLES
   ========================================================================== */

/* Services Hero Banner */
.services-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 75px;
    background-image: url("../images/servicios/chimeneas_gas_chia.webp");
    background-size: cover;
    background-position: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.services-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15,15,26,0.88) 0%, rgba(230,43,74,0.3) 100%);
}

.services-hero__content {
    position: relative;
    z-index: 2;
    max-width: 750px;
    padding: 80px 20px;
}

.services-hero__tagline {
    color: var(--gold);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.services-hero__title {
    color: #fff;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

.services-hero__desc {
    color: #ddd;
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* Service Detail Sections */
.service-detail {
    padding: 100px 0;
    background: #fff;
}

.service-detail--alt {
    background: var(--light);
}

.service-detail__text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail__badge {
    display: inline-block;
    background: var(--gradient-fire);
    color: #fff;
    padding: 6px 18px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    align-self: flex-start;
}

.service-detail .sec_title {
    font-weight: 700;
    color: var(--secondary);
    font-size: 30px;
    line-height: 1.3;
    margin-bottom: 20px;
}

.service-detail .sec_desc {
    color: #555;
    line-height: 1.8;
    font-size: 15px;
    margin-bottom: 25px;
}

.service-detail .sec_desc strong {
    color: var(--secondary);
}

/* Feature Items */
.service-detail__features {
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    padding: 10px 0;
}

.feature-item i {
    color: var(--primary);
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.feature-item div {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
}

.feature-item strong {
    color: var(--secondary);
}

/* Service Detail Image */
.service-detail__image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-top: 20px;
}

.service-detail__image::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    width: 100%;
    height: 100%;
    border: 4px solid var(--primary);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.3;
}

.service-detail__image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-lg);
    transition: transform 0.4s ease;
}

.service-detail__image:hover img {
    transform: scale(1.03);
}

/* Services Page Responsive */
@media (max-width: 991px) {
    .services-hero__title {
        font-size: 32px;
    }

    .service-detail .sec_title {
        font-size: 26px;
    }

    .service-detail {
        padding: 60px 0;
    }

    .col-lg-push-6, .col-md-push-6,
    .col-lg-pull-6, .col-md-pull-6 {
        left: auto;
        right: auto;
    }
}

@media (max-width: 768px) {
    .services-hero {
        min-height: 50vh;
        margin-top: 70px;
    }

    .services-hero__title {
        font-size: 26px;
    }

    .services-hero__desc {
        font-size: 15px;
    }

    .service-detail__image {
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .service-detail__image::before {
        display: none;
    }

    .feature-item {
        margin-bottom: 10px;
    }
}
