/* Service Detail Blocks Styles */

/* Base Service Detail Styles */
.service-detail {
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.service-detail-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Global text color fix for service details */
.service-detail p {
    color: #495057;
}

.service-detail h2, 
.service-detail h3, 
.service-detail h4 {
    color: #1e3a5f;
}

.service-detail strong {
    color: #1e3a5f;
}

/* Service Detail Content - First Block Style */
.service-detail-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

.service-detail-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

.service-badge-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #dc3545;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.3);
}

.service-detail-text {
    padding: 20px 0;
}

.service-detail-title {
    font-size: 2.5rem;
    color: #1e3a5f;
    margin-bottom: 25px;
    font-weight: 700;
}

.service-detail-description {
    margin-bottom: 30px;
}

.service-detail-description p {
    font-size: 1.1rem;
    color: #495057;
    line-height: 1.8;
    margin-bottom: 15px;
}

.service-advantages {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.service-advantages h3 {
    color: #1e3a5f;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.advantages-list {
    list-style: none;
    padding: 0;
}

.advantages-list li {
    padding: 12px 0;
    color: #495057;
    font-size: 1.05rem;
    border-bottom: 1px solid #e9ecef;
}

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

.service-process {
    margin-bottom: 30px;
}

.service-process h3 {
    color: #1e3a5f;
    margin-bottom: 25px;
    font-size: 1.5rem;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    background: transparent;
}

.timeline-step {
    position: relative;
    text-align: center;
}

.timeline-step .step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #ffc107;
    color: white;
    border-radius: 50%;
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.timeline-step .step-content {
    color: #495057;
}

.timeline-step .step-content strong {
    display: block;
    color: #1e3a5f;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.timeline-step .step-content p {
    color: #6c757d !important;
    font-size: 0.95rem;
    line-height: 1.5;
}

.service-cta-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #dc3545;
    color: white;
}

.btn-primary:hover {
    background: #bd2130;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(220, 53, 69, 0.3);
}

.btn-secondary {
    background: white;
    color: #dc3545;
    border: 2px solid #dc3545;
}

.btn-secondary:hover {
    background: #dc3545;
    color: white;
    transform: translateY(-2px);
}

/* Service Detail Grid - Second Block Style */
.service-detail-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 40px;
}

.service-info-block {
    padding: 20px 0;
}

.service-title-large {
    font-size: 2.5rem;
    color: #1e3a5f;
    margin-bottom: 25px;
    font-weight: 700;
}

.service-intro {
    margin-bottom: 40px;
}

.lead-text {
    font-size: 1.2rem;
    color: #495057;
    line-height: 1.8;
}

.service-benefits {
    margin-bottom: 30px;
}

.service-benefits h3 {
    color: #1e3a5f;
    margin-bottom: 25px;
    font-size: 1.5rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.benefit-card {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.benefit-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 10px;
}

.benefit-card h4 {
    color: #1e3a5f;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.benefit-card p {
    color: #6c757d;
    font-size: 0.95rem;
}

.service-visual-block {
    position: relative;
}

.service-visual-block img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.price-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: white;
    padding: 15px 25px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.price-label {
    display: block;
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.price-amount {
    display: block;
    color: #dc3545;
    font-size: 2rem;
    font-weight: bold;
}

.service-process-horizontal {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 40px;
}

.service-process-horizontal h3 {
    text-align: center;
    color: #1e3a5f;
    margin-bottom: 40px;
    font-size: 1.8rem;
}

.steps-horizontal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.step-horizontal {
    flex: 1;
    text-align: center;
    padding: 0 15px;
}

.step-horizontal .step-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.step-horizontal h4 {
    color: #1e3a5f;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.step-horizontal p {
    color: #6c757d;
    font-size: 0.95rem;
}

.step-arrow {
    color: #dc3545;
    font-size: 2rem;
    margin: 0 10px;
}

.process-title {
    text-align: center;
    color: #1e3a5f;
    margin-bottom: 40px;
    font-size: 1.8rem;
}

.process-steps-horizontal {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
}

.process-step-horizontal {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 0 15px;
}

.step-icon-circle {
    width: 80px;
    height: 80px;
    background: white;
    border: 3px solid #ffc107;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
}

.process-step-horizontal h4 {
    color: #1e3a5f;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.process-step-horizontal p {
    color: #6c757d;
    font-size: 0.95rem;
}

.process-arrow {
    position: absolute;
    top: 40px;
    right: -30px;
    color: #ffc107;
    font-size: 1.5rem;
}

.service-brands {
    text-align: center;
    padding: 40px 0;
}

.service-brands h3 {
    color: #1e3a5f;
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.brands-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.brand-item {
    padding: 15px 25px;
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    font-weight: 600;
    color: #495057;
    transition: all 0.3s ease;
}

.brand-item:hover {
    background: #f8f9fa;
    transform: scale(1.05);
}

.service-advantages-modern {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 40px;
}

.service-advantages-modern h3 {
    text-align: center;
    color: #1e3a5f;
    margin-bottom: 40px;
    font-size: 1.8rem;
}

.advantages-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.advantage-column {
    padding: 20px;
}

.advantage-column h4 {
    color: #dc3545;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.advantage-column ul {
    list-style: none;
    padding: 0;
}

.advantage-column ul li {
    padding: 10px 0;
    color: #495057;
    border-bottom: 1px solid #e9ecef;
}

.advantage-column ul li:last-child {
    border-bottom: none;
}

.service-action-bar {
    text-align: center;
    padding: 40px 20px;
    background: #f8f9fa;
    border-radius: 15px;
    margin-top: 40px;
}

.action-button-primary {
    display: inline-block;
    background: #dc3545;
    color: white;
    padding: 18px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin-bottom: 25px;
}

.action-button-primary:hover {
    background: #bd2130;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(220, 53, 69, 0.3);
}

.service-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.badge {
    display: inline-block;
    background: white;
    color: #1e3a5f;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.service-cta-bottom {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
}

.cta-text {
    font-size: 1.3rem;
    margin-bottom: 25px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-white-solid {
    background: white;
    color: #dc3545;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-white-solid:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Service Detail Center - Third Block Style (Already exists, adding missing styles) */
.service-full-width-image {
    margin: 40px 0;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.service-full-width-image img {
    width: 100%;
    height: auto;
    display: block;
}

.image-overlay-badge {
    position: absolute;
    top: 30px;
    left: 30px;
    background: rgba(30, 58, 95, 0.9);
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    backdrop-filter: blur(10px);
}

.service-advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.advantage-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.advantage-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.advantage-card h3 {
    color: #1e3a5f;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.advantage-card p {
    color: #6c757d;
    line-height: 1.6;
}

.service-process-visual {
    background: linear-gradient(135deg, #1e3a5f 0%, #2c5282 100%);
    color: white;
    padding: 50px;
    border-radius: 15px;
    margin: 40px 0;
}

.process-visual-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
}

.process-visual-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.visual-step {
    text-align: center;
}

.visual-step-icon {
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.1);
    border: 2px solid #ffc107;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.8rem;
}

.visual-step h4 {
    color: #ffc107;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.visual-step p {
    font-size: 0.95rem;
    opacity: 0.9;
}

.service-security-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin: 40px 0;
}

.security-content h3 {
    color: #1e3a5f;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.security-list {
    list-style: none;
    padding: 0;
}

.security-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #e9ecef;
}

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

.security-icon {
    color: #28a745;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.security-text h4 {
    color: #1e3a5f;
    margin-bottom: 5px;
}

.security-text p {
    color: #6c757d;
    font-size: 0.95rem;
}

.security-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Service Detail Left Layout */
.service-detail-left {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.service-left-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.service-left-content h2 {
    font-size: 2.5rem;
    color: #1e3a5f;
    margin-bottom: 20px;
    font-weight: 700;
}

.service-left-content .lead-text {
    font-size: 1.25rem;
    color: #495057;
    line-height: 1.6;
    margin-bottom: 30px;
}

.service-left-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.feature-item-left {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.feature-item-left:hover {
    transform: translateX(10px);
}

.feature-icon-left {
    font-size: 2rem;
    flex-shrink: 0;
}

.feature-text h4 {
    color: #1e3a5f;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.feature-text p {
    color: #6c757d;
    font-size: 0.95rem;
}

.service-left-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-left-image img {
    width: 100%;
    height: auto;
    display: block;
}

.service-left-bottom {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.bottom-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.bottom-card h3 {
    color: #1e3a5f;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.advantages-list {
    list-style: none;
    padding: 0;
}

.advantages-list li {
    padding: 10px 0;
    color: #495057;
    position: relative;
    padding-left: 25px;
}

.advantages-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.process-steps {
    /* Removed counter-reset as numbers are in HTML */
}

.process-step {
    position: relative;
    /* Removed padding-left and counter-increment */
    margin-bottom: 20px;
}

/* Removed .process-step:before rule to prevent duplicate numbers */

.pricing-info {
    text-align: center;
}

.price-range {
    font-size: 2rem;
    color: #1e3a5f;
    font-weight: bold;
    margin-bottom: 15px;
}

.pricing-note {
    color: #6c757d;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.btn-primary {
    display: inline-block;
    background: #dc3545;
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #bd2130;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(220, 53, 69, 0.3);
}

/* Service Detail Right Layout */
.service-detail-right {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: #495057;
}

.service-right-header {
    text-align: center;
    margin-bottom: 60px;
}

.service-title-gradient {
    font-size: 3rem;
    background: linear-gradient(135deg, #ffc107 0%, #ff6b6b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.service-subtitle-white {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.9);
}

.service-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.service-card-dark {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
}

.service-card-dark:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-5px);
}

.card-icon-wrap {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ffc107 0%, #ff6b6b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.card-icon {
    font-size: 1.5rem;
}

.service-card-dark h3 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.service-card-dark p {
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
}

.service-features-white {
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 40px;
}

.service-features-white h3 {
    color: #ffc107;
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.features-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.feature-column h4 {
    color: white;
    margin-bottom: 15px;
}

.feature-column ul {
    list-style: none;
    padding: 0;
}

.feature-column li {
    padding: 8px 0;
    color: rgba(255,255,255,0.9);
    padding-left: 25px;
    position: relative;
}

.feature-column li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #ffc107;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    padding: 40px 0;
}

.timeline-step {
    text-align: center;
    position: relative;
}

.timeline-icon {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
}

.timeline-step h4 {
    color: #ffc107;
    margin-bottom: 10px;
}

.timeline-step p {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
}

.process-timeline:before {
    content: "";
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ffc107, transparent);
}

.service-cta-gradient {
    background: linear-gradient(135deg, #dc3545 0%, #bd2130 100%);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
}

.cta-title-dark {
    color: white;
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-subtitle-dark {
    color: rgba(255,255,255,0.9);
    margin-bottom: 25px;
}

.btn-white-outline {
    display: inline-block;
    background: white;
    color: #dc3545;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-white-outline:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Service Detail Center Layout */
.service-detail-center {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.service-center-header {
    text-align: center;
    margin-bottom: 60px;
}

.service-title-center {
    font-size: 2.5rem;
    color: #1e3a5f;
    margin-bottom: 20px;
    font-weight: 700;
}

.service-subtitle-center {
    font-size: 1.25rem;
    color: #6c757d;
    max-width: 800px;
    margin: 0 auto;
}

/* Features Showcase */
.service-features-showcase {
    position: relative;
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.showcase-image {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.features-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.feature-point {
    position: absolute;
    pointer-events: auto;
}

.feature-point.point-1 {
    top: 20%;
    left: 15%;
}

.feature-point.point-2 {
    top: 45%;
    right: 20%;
}

.feature-point.point-3 {
    top: 70%;
    left: 30%;
}

.point-marker {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: #dc3545;
    color: white;
    border-radius: 50%;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(220, 53, 69, 0.3);
    transition: all 0.3s ease;
}

.point-marker:hover {
    transform: scale(1.2);
    background: #bd2130;
}

.point-tooltip {
    position: absolute;
    bottom: 45px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(30, 58, 95, 0.95);
    color: white;
    padding: 8px 15px;
    border-radius: 8px;
    white-space: nowrap;
    font-size: 0.9rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.feature-point:hover .point-tooltip {
    opacity: 1;
}

/* Specs Grid */
.service-specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.spec-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.spec-card h3 {
    color: #1e3a5f;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.spec-list {
    list-style: none;
    padding: 0;
}

.spec-list li {
    padding: 10px 0;
    color: #495057;
    border-bottom: 1px solid #e9ecef;
}

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

/* Process Installation */
.process-installation {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 40px;
}

.installation-title {
    text-align: center;
    color: #1e3a5f;
    margin-bottom: 40px;
    font-size: 1.8rem;
}

.installation-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.installation-step {
    flex: 1;
    text-align: center;
    position: relative;
}

.step-icon-install {
    width: 80px;
    height: 80px;
    background: white;
    border: 3px solid #dc3545;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
}

.installation-step h4 {
    color: #1e3a5f;
    margin-bottom: 10px;
}

.installation-step p {
    color: #6c757d;
    font-size: 0.95rem;
}

.installation-arrow {
    position: absolute;
    top: 40px;
    right: -30px;
    color: #dc3545;
    font-size: 1.5rem;
}

/* Service CTA Center */
.service-cta-center {
    background: linear-gradient(135deg, #dc3545 0%, #bd2130 100%);
    color: white;
    padding: 50px;
    border-radius: 15px;
    text-align: center;
}

.cta-title-center {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-subtitle-center {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-buttons-center {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-white-center {
    background: white;
    color: #dc3545;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-white-center:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.badge-security {
    display: inline-block;
    background: #28a745;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.service-title-center {
    font-size: 3rem;
    color: #1e3a5f;
    margin-bottom: 20px;
}

.service-desc-center {
    font-size: 1.25rem;
    color: #6c757d;
    max-width: 800px;
    margin: 0 auto;
}

.service-showcase {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
}

.showcase-features {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.showcase-features h3 {
    color: #1e3a5f;
    margin-bottom: 20px;
}

.feature-check {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
}

.check-icon {
    color: #28a745;
    font-size: 1.2rem;
}

.showcase-image {
    position: relative;
}

.showcase-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.image-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #dc3545;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
}

.showcase-process {
    background: linear-gradient(135deg, #1e3a5f 0%, #2c5282 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
}

.showcase-process h3 {
    color: #ffc107;
    margin-bottom: 20px;
}

.process-item {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.process-item:last-child {
    border-bottom: none;
}

.process-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    background: #ffc107;
    color: #1e3a5f;
    border-radius: 50%;
    font-weight: bold;
    margin-right: 10px;
}

.service-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.benefit-box {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.benefit-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.benefit-box h4 {
    color: #1e3a5f;
    margin-bottom: 15px;
}

.benefit-box p {
    color: #6c757d;
    line-height: 1.6;
}

.service-bottom-cta {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    border-radius: 15px;
    padding: 50px;
    text-align: center;
    color: white;
}

.cta-content h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 30px 0;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-icon {
    font-size: 1.5rem;
}

.cta-button {
    display: inline-block;
    background: white;
    color: #dc3545;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #f8f9fa;
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

/* Service Detail Dark Theme */
.service-detail-dark {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    color: #495057;
}

.service-hero-dark {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.hero-content-dark {
    animation: fadeInLeft 0.8s ease;
}

.service-title-white {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1e3a5f;
    font-weight: 700;
}

.service-lead-white {
    font-size: 1.25rem;
    color: #6c757d;
    line-height: 1.6;
}

.hero-image-dark {
    position: relative;
    animation: fadeInRight 0.8s ease;
}

.hero-image-dark img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.service-columns-dark {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.column-dark {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.column-dark h3 {
    color: #dc3545;
    margin-bottom: 25px;
    font-size: 1.3rem;
}

.services-list-dark {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-item-dark {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.item-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.service-item-dark h4 {
    color: #1e3a5f;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.service-item-dark p {
    color: #6c757d;
    font-size: 0.95rem;
}

.advantages-dark {
    list-style: none;
    padding: 0;
}

.advantages-dark li {
    padding: 12px 0;
    color: #495057;
    border-bottom: 1px solid #e9ecef;
}

.advantages-dark li:last-child {
    border-bottom: none;
}

.process-vertical {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.process-step-dark {
    display: flex;
    align-items: center;
    gap: 15px;
}

.step-num {
    width: 35px;
    height: 35px;
    background: #dc3545;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
    flex-shrink: 0;
}

.process-step-dark p {
    color: #6c757d;
}

.service-cta-dark {
    background: linear-gradient(135deg, #dc3545 0%, #bd2130 100%);
    border-radius: 15px;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-range-dark {
    display: flex;
    gap: 20px;
    align-items: center;
    color: white;
    font-size: 1.2rem;
}

.separator {
    color: white;
    opacity: 0.7;
}

.btn-white {
    background: white;
    color: #dc3545 !important;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-white:hover {
    background: #f8f9fa;
    color: #bd2130 !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Service Detail Compact */
.service-detail-compact {
    background: #f8f9fa;
    padding: 60px 20px;
}

.service-split-view {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.split-content {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.service-header-compact {
    margin-bottom: 40px;
}

.service-title-compact {
    font-size: 2rem;
    color: #1e3a5f;
    margin-bottom: 10px;
}

.service-subtitle {
    color: #6c757d;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.service-intro-text {
    margin: 30px 0;
    padding: 25px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.service-intro-text p {
    color: #6c757d;
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 16px;
}

.service-intro-text p:last-child {
    margin-bottom: 0;
}

.service-grid-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.grid-feature {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.grid-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.grid-feature img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.grid-feature h4 {
    color: #1e3a5f;
    margin-bottom: 10px;
}

.grid-feature p {
    color: #6c757d;
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.price-tag {
    display: inline-block;
    background: #28a745;
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-weight: 600;
}

.service-info-compact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.info-block {
    padding: 25px;
    background: #f8f9fa;
    border-radius: 10px;
}

.info-block h3 {
    color: #1e3a5f;
    margin-bottom: 15px;
}

.info-block ul {
    list-style: none;
    padding: 0;
}

.info-block ul li {
    padding: 8px 0;
    color: #495057;
}

.info-block ol {
    padding-left: 20px;
    color: #495057;
}

.info-block ol li {
    padding: 5px 0;
}

.split-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.sidebar-card h3 {
    color: #1e3a5f;
    margin-bottom: 15px;
}

.sidebar-card p {
    color: #6c757d;
    margin-bottom: 20px;
}

.time-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #ffc107;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.2rem;
}

.protected-brands {
    list-style: none;
    padding: 0;
}

.protected-brands li {
    padding: 8px 0;
    color: #495057;
    border-bottom: 1px solid #e9ecef;
}

.protected-brands li:last-child {
    border-bottom: none;
}

.sidebar-cta {
    background: linear-gradient(135deg, #dc3545 0%, #bd2130 100%);
    color: white;
    padding: 20px;
    border-radius: 15px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.sidebar-cta:hover {
    background: linear-gradient(135deg, #bd2130 0%, #a71d2a 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(220, 53, 69, 0.3);
}

.sidebar-cta .phone {
    font-size: 1.3rem;
    font-weight: 700;
}

/* Service Detail Emergency */
.service-detail-emergency {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: #495057;
    position: relative;
}

.service-detail-emergency:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23dc3545' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.emergency-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.emergency-badge-large {
    display: inline-block;
    position: relative;
    margin-bottom: 30px;
}

.pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: rgba(220, 53, 69, 0.1);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

.badge-text {
    position: relative;
    display: inline-block;
    background: #dc3545;
    color: white;
    padding: 20px 40px;
    border-radius: 50px;
    font-size: 2rem;
    font-weight: 900;
    z-index: 1;
}

.emergency-title {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #1e3a5f;
}

.emergency-subtitle {
    font-size: 1.25rem;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto;
}

.emergency-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.emergency-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.emergency-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.urgency-icon {
    font-size: 2rem;
}

.card-header h3 {
    font-size: 1.3rem;
    color: #1e3a5f;
}

.urgency-list {
    list-style: none;
    padding: 0;
}

.urgency-list li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: #495057;
}

.urgency-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #dc3545;
    font-weight: bold;
}

.time-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.time-item {
    text-align: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
}

.time-item strong {
    display: block;
    font-size: 1.5rem;
    color: #dc3545;
    margin-bottom: 5px;
}

.time-item span {
    font-size: 0.9rem;
    color: #6c757d;
}

.pricing-time {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.price-slot {
    display: flex;
    justify-content: space-between;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.slot-time {
    color: #495057;
}

.slot-price {
    color: #dc3545;
    font-weight: 600;
}

.emergency-process {
    background: white;
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.emergency-process h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 40px;
    color: #1e3a5f;
}

.process-emergency-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.emergency-step {
    flex: 1;
    text-align: center;
}

.step-icon-emergency {
    font-size: 3rem;
    margin-bottom: 15px;
}

.emergency-step h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #dc3545;
}

.emergency-step p {
    font-size: 0.95rem;
    color: #6c757d;
}

.arrow-emergency {
    font-size: 2rem;
    color: #dc3545;
    margin: 0 20px;
}

.emergency-advantages {
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.emergency-advantages h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 40px;
    color: #1e3a5f;
}

.advantages-emergency-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.advantage-emergency {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: white;
    border-radius: 10px;
    border: 1px solid #e9ecef;
}

.check-emergency {
    color: #28a745;
    font-size: 1.2rem;
    font-weight: bold;
}

.advantage-emergency span:last-child {
    color: #495057;
}

.emergency-cta-bottom {
    background: linear-gradient(135deg, #dc3545 0%, #bd2130 100%);
    color: white;
    border-radius: 15px;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.cta-emergency-content h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: white;
}

.cta-emergency-content p {
    color: rgba(255,255,255,0.9);
}

.emergency-button-large {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: #dc3545;
    color: white;
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.emergency-button-large:hover {
    background: #bd2130;
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(220, 53, 69, 0.3);
}

.button-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.button-text .label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.button-text .number {
    font-size: 1.3rem;
    font-weight: 700;
}

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

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

/* Responsive Design */
@media (max-width: 1024px) {
    .service-detail-content,
    .service-detail-grid,
    .service-left-layout,
    .service-hero-dark,
    .service-security-features {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-left-bottom,
    .service-columns-dark,
    .emergency-services-grid,
    .service-benefits-grid,
    .service-advantages-grid,
    .service-specs-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .installation-steps {
        flex-direction: column;
        gap: 30px;
    }
    
    .installation-arrow {
        display: none;
    }

    .process-timeline,
    .process-visual-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-split-view {
        grid-template-columns: 1fr;
    }

    .service-showcase {
        grid-template-columns: 1fr;
    }

    .features-columns {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps-horizontal,
    .steps-horizontal {
        flex-direction: column;
        gap: 30px;
    }
    
    .process-arrow,
    .step-arrow {
        display: none;
    }
    
    .advantages-columns {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .service-detail {
        padding: 60px 15px;
    }

    .service-detail-title,
    .service-title-large,
    .service-left-content h2,
    .service-title-white,
    .service-title-gradient,
    .service-title-center,
    .emergency-title {
        font-size: 2rem;
    }
    
    .service-detail-content {
        gap: 30px;
    }
    
    .service-detail-image {
        margin-bottom: 20px;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .timeline-step {
        text-align: left;
        display: flex;
        align-items: flex-start;
        gap: 15px;
    }
    
    .timeline-step .step-number {
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .service-grid-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .grid-feature img {
        width: 100%;
        height: 250px;
        aspect-ratio: auto;
        object-fit: cover;
    }

    .service-info-compact {
        grid-template-columns: 1fr;
    }

    .process-emergency-steps {
        flex-direction: column;
        gap: 30px;
    }

    .arrow-emergency {
        transform: rotate(90deg);
        margin: 20px 0;
    }

    .advantages-emergency-grid {
        grid-template-columns: 1fr;
    }

    .emergency-cta-bottom {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .emergency-button-large {
        width: 100%;
        justify-content: center;
    }
    
    .button-text {
        align-items: center;
        text-align: center;
    }
    
    .button-text .label {
        display: block;
    }
    
    .button-text .number {
        font-size: 1rem;
    }

    .service-cta-dark {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .price-range-dark {
        flex-direction: column;
        gap: 10px;
    }

    .cta-features {
        flex-direction: column;
        gap: 15px;
    }

    .time-grid {
        grid-template-columns: 1fr;
    }

    .service-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .service-advantages,
    .service-process {
        padding: 20px;
    }
    
    .service-process-horizontal {
        padding: 25px;
    }
    
    .brands-grid {
        gap: 20px;
    }
    
    .process-visual-steps {
        grid-template-columns: 1fr;
    }
    
    .features-overlay {
        display: none;
    }
    
    .service-features-showcase {
        margin-bottom: 40px;
    }
    
    .cta-buttons-center {
        flex-direction: column;
    }
    
    .btn-white-center {
        width: 100%;
        justify-content: center;
    }
    
    /* Fix for hero-image-dark on mobile */
    .hero-image-dark img {
        max-height: 250px;
        object-fit: cover;
    }
}

@media (max-width: 480px) {
    .service-detail-title,
    .service-title-large,
    .service-left-content h2,
    .service-title-white,
    .service-title-gradient,
    .service-title-center,
    .emergency-title {
        font-size: 1.5rem;
    }
    
    .service-detail-description p,
    .lead-text {
        font-size: 1rem;
    }
    
    .service-advantages h3,
    .service-process h3,
    .service-benefits h3 {
        font-size: 1.3rem;
    }
    
    .advantages-list li {
        font-size: 0.95rem;
        padding: 10px 0;
    }
    
    .step-content strong {
        font-size: 1rem;
        color: #1e3a5f !important;
    }
    
    .step-content p {
        font-size: 0.85rem;
        color: #6c757d !important;
    }
    
    .btn-primary, .btn-secondary {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
    
    .service-cta-group {
        flex-direction: column;
        gap: 15px;
    }
    
    .service-cta-group a {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    .benefit-card {
        padding: 15px;
    }
    
    .benefit-icon {
        font-size: 1.5rem;
    }
    
    .price-amount {
        font-size: 1.5rem;
    }
    
    .step-icon-circle {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .badge-text {
        font-size: 1.5rem;
        padding: 15px 30px;
    }

    .step-icon-emergency {
        font-size: 2rem;
    }

    .emergency-button-large {
        padding: 15px 20px;
        width: 100%;
    }
    
    .emergency-button-large svg {
        width: 20px;
        height: 20px;
    }

    .button-text {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .button-text .label {
        display: block;
        font-size: 0.85rem;
        margin-bottom: 5px;
    }

    .button-text .number {
        font-size: 1.1rem;
        display: block;
    }

    .price-range {
        font-size: 1.5rem;
    }

    .timeline-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .bottom-card {
        padding: 20px;
    }

    .service-card-dark,
    .emergency-card {
        padding: 20px;
    }

    .split-content {
        padding: 25px;
    }
    
    .service-badge-overlay {
        font-size: 0.9rem;
        padding: 8px 15px;
    }
    
    .process-title {
        font-size: 1.5rem;
    }
    
    .service-process-horizontal {
        padding: 20px;
    }
}

@media (max-width: 375px) {
    .service-detail {
        padding: 40px 10px;
    }

    .service-detail-title,
    .service-title-large,
    .service-left-content h2,
    .service-title-white,
    .service-title-gradient,
    .service-title-center,
    .emergency-title {
        font-size: 1.3rem;
    }

    .service-detail-description p,
    .service-left-content .lead-text,
    .service-lead-white,
    .service-subtitle-white,
    .emergency-subtitle,
    .lead-text {
        font-size: 1rem;
    }
    
    .service-advantages,
    .service-process {
        padding: 15px;
    }
    
    .service-advantages h3,
    .service-process h3,
    .service-benefits h3 {
        font-size: 1.2rem;
    }
    
    .advantages-list li {
        font-size: 0.9rem;
        padding: 8px 0;
    }

    .badge-text {
        font-size: 1.2rem;
        padding: 12px 25px;
    }

    .btn-primary,
    .btn-secondary,
    .btn-white,
    .btn-white-outline,
    .cta-button {
        padding: 12px 25px;
        font-size: 0.95rem;
    }

    .column-dark,
    .bottom-card,
    .service-card-dark,
    .benefit-card {
        padding: 15px;
    }
    
    .service-badge-overlay {
        top: 10px;
        right: 10px;
        font-size: 0.85rem;
        padding: 6px 12px;
    }
    
    .timeline-step .step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .price-overlay {
        padding: 10px 15px;
    }
    
    .price-amount {
        font-size: 1.3rem;
    }
}

@media (max-width: 320px) {
    .service-detail-title,
    .service-title-large,
    .service-left-content h2,
    .service-title-white,
    .service-title-gradient,
    .service-title-center,
    .emergency-title {
        font-size: 1.125rem;
    }

    .service-detail {
        padding: 30px 10px;
    }

    .emergency-button-large {
        padding: 12px 15px;
    }
    
    .emergency-button-large svg {
        display: none;
    }

    .button-text .number {
        font-size: 0.95rem;
        word-break: break-all;
    }
    
    .cta-emergency-content h3 {
        font-size: 1.3rem;
    }
    
    .cta-emergency-content p {
        font-size: 0.9rem;
    }
    
    .service-detail-description p,
    .lead-text {
        font-size: 0.9rem;
    }
    
    .advantages-list li {
        font-size: 0.85rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .service-advantages,
    .service-process,
    .service-process-horizontal {
        padding: 12px;
    }
}