/* CSS extracted from index.html */

/* Base styles and CSS variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #3498db;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --success-color: #27ae60;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

@media (min-width: 769px) {
    .header-content {
        gap: 60px;
    }
}

header {
    background: rgba(255, 255, 255, 0.98);
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.call-btn {
    background: #e74c3c;
    color: white;
    padding: 10px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    border: none;
}

.call-btn:hover {
    background: #c0392b;
    transform: translateY(-1px);
}

.call-btn svg {
    width: 18px;
    height: 18px;
}

@media (min-width: 769px) {
    .header-info {
        display: flex !important;
    }
}

@media (max-width: 768px) {
    header {
        padding: 14px 0;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .header-content {
        gap: 30px;
    }
    
    .logo {
        font-size: 1.3rem;
        gap: 6px;
        font-weight: 600;
    }
    
    .logo svg {
        width: 22px;
        height: 22px;
    }
    
    .call-btn {
        padding: 10px 16px !important;
        font-size: 0.9rem !important;
        border-radius: 8px !important;
        background: #e74c3c !important;
        display: flex !important;
        align-items: center !important;
        gap: 6px !important;
    }
    
    .call-btn svg {
        width: 16px !important;
        height: 16px !important;
    }
    
    .call-btn-text {
        display: inline !important;
        font-size: 0.9rem !important;
    }
}

@media (max-width: 380px) {
    .logo {
        font-size: 1.2rem;
    }
    
    .call-btn {
        padding: 9px 14px !important;
    }
    
    .call-btn-text {
        font-size: 0.85rem !important;
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-color);
}

.logo-icon {
    display: flex;
    align-items: center;
}

.logo-icon svg {
    color: var(--primary-color);
}

.call-btn {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.call-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.btn-secondary {
    background: var(--accent-color);
    color: var(--white);
}

.btn-secondary:hover {
    background: #2980b9;
}

.hero-section {
    position: relative;
    width: 100%;
    margin-bottom: 280px;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(0,0,0,0.1) 0%, 
        rgba(0,0,0,0.2) 40%,
        rgba(0,0,0,0.4) 100%);
}

.hero-content {
    position: absolute;
    bottom: -250px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 90%;
    max-width: 700px;
    z-index: 10;
}

.hero-title-box {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(255, 255, 255, 0.9) 100%);
    backdrop-filter: blur(10px);
    padding: 30px 35px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.rating-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f0f0;
}

.rating-stars {
    display: flex;
    gap: 1px;
    font-size: 1.1rem;
    color: #FFD700;
}

.rating-number {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary-color);
}

.rating-count {
    font-size: 0.9rem;
    color: #666;
}

.verified-icon {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 0.8rem;
    color: var(--success-color);
}

.verified-icon svg {
    width: 12px;
    height: 12px;
}

.hero-title {
    font-size: 3rem;
    color: var(--primary-color);
    font-weight: 900;
    margin-top: 5px;
    margin-bottom: 15px;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: -1px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.hero-accent {
    color: var(--secondary-color);
    display: block;
    font-size: 3.5rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.5;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    margin-top: 25px;
}

.hero-btn {
    padding: 16px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hero-btn-primary {
    background: #e74c3c !important;
    color: white !important;
    box-shadow: 0 4px 20px rgba(231, 76, 60, 0.4);
    font-weight: 600;
    position: relative;
    z-index: 10;
    opacity: 1 !important;
    border: 2px solid #e74c3c;
}

.hero-btn-primary:hover {
    background: #c0392b !important;
    border-color: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(231, 76, 60, 0.6);
}

.hero-btn-primary:active {
    transform: translateY(0);
}

.mini-testimonial {
    margin-top: 20px;
    display: inline-block;
    width: 100%;
    max-width: 400px;
}

.quick-review {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 15px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.review-avatar {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, var(--secondary-color), #ff6b6b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.review-content {
    flex: 1;
}

.review-stars {
    color: #FFD700;
    font-size: 0.85rem;
    margin-bottom: 2px;
}

.review-text {
    color: rgba(44, 62, 80, 0.9);
    font-size: 0.85rem;
    font-weight: 600;
    font-style: italic;
}

.review-time {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
    color: rgba(44, 62, 80, 0.7);
    white-space: nowrap;
}

.time-dot {
    width: 6px;
    height: 6px;
    background: #4CAF50;
    border-radius: 50%;
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.emergency-section {
    padding: 3rem 0;
    background: #fafafa;
    position: relative;
}

.emergency-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 900;
    position: relative;
    z-index: 1;
}

.emergency-title span {
    color: var(--secondary-color);
}

.emergency-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.emergency-subtitle::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    margin: 20px auto 0;
    border-radius: 2px;
}

.emergency-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.emergency-card {
    background: white;
    padding: 0;
    border-radius: 12px;
    text-align: left;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #e0e0e0;
    z-index: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.emergency-card-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 12px 12px 0 0;
    filter: brightness(0.98);
}

.emergency-card-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background: linear-gradient(to bottom, #ffffff, #fafafa);
}

.emergency-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    border-color: #3498db;
}

.emergency-card h3 {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.emergency-card p {
    color: #666;
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: auto;
    flex-grow: 1;
}

.emergency-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #f0f8ff;
    color: #3498db;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 1rem;
    align-self: flex-start;
}

.emergency-cta {
    text-align: center;
    margin-top: 2.5rem;
    position: relative;
    z-index: 1;
}

.emergency-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    padding: 12px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.25);
    transition: all 0.3s;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.emergency-phone:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.35);
    background: linear-gradient(135deg, #c0392b, #a02820);
}

.emergency-call-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.emergency-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    font-weight: 500;
}

.emergency-number {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    white-space: nowrap;
    letter-spacing: 0.5px;
}

.pulse-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: #4CAF50;
    border-radius: 50%;
    animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
    0% { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(76, 175, 80, 0); }
    100% { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0); }
}

.services-section {
    padding: 4rem 0;
    background: #ffffff;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 2.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 800;
}

.section-title span {
    color: var(--secondary-color);
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1.5rem;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s;
    border: 2px solid transparent;
    min-height: 180px;
}

.service-item:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: var(--secondary-color);
    transform: translateY(-5px);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color), #ff6b6b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.3s;
}

.service-icon svg {
    color: white;
}

.service-item:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 5px 20px rgba(231, 76, 60, 0.4);
}

.service-cta-card {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe0e0 100%);
    border: 2px solid var(--secondary-color);
    animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 5px 20px rgba(231, 76, 60, 0.2);
        border-color: var(--secondary-color);
    }
    50% {
        box-shadow: 0 5px 30px rgba(231, 76, 60, 0.5);
        border-color: #ff6b6b;
    }
}

.service-cta-card:hover {
    background: linear-gradient(135deg, var(--secondary-color), #ff6b6b);
    transform: translateY(-5px) scale(1.02);
}

.service-cta-card:hover * {
    color: white !important;
}

.cta-icon {
    background: white;
    animation: pulse 2s infinite;
}

.cta-icon svg {
    color: var(--secondary-color);
}

@keyframes pulse {
    0% { 
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.7);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(231, 76, 60, 0);
    }
    100% { 
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(231, 76, 60, 0);
    }
}

.service-call-btn {
    display: inline-block;
    margin-top: 0.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.3s;
    animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.service-cta-card:hover .service-call-btn {
    color: white !important;
    text-decoration: underline;
}

.service-content h3 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
    line-height: 1.3;
}

.service-content p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

.services-footer {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #f0f0f0;
}

.services-note {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
}

.map-section {
    padding: 4rem 0;
    background: white;
}

.map-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
    align-items: center;
}

.gps-map {
    position: relative;
    width: 100%;
    height: 450px;
    background: #e5f2e5;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

/* Map elements */
.map-street {
    position: absolute;
    background: #f5f5f5;
    z-index: 1;
}

.street-h1 {
    top: 30%;
    left: 0;
    right: 0;
    height: 40px;
}

.street-h2 {
    bottom: 25%;
    left: 0;
    right: 0;
    height: 40px;
}

.street-v1 {
    left: 25%;
    top: 0;
    bottom: 0;
    width: 40px;
}

.street-v2 {
    right: 30%;
    top: 0;
    bottom: 0;
    width: 40px;
}

.map-block {
    position: absolute;
    background: #d4e4d4;
    border-radius: 8px;
    z-index: 2;
}

.block-1 {
    top: 10%;
    left: 10%;
    width: 80px;
    height: 60px;
}

.block-2 {
    top: 15%;
    right: 15%;
    width: 100px;
    height: 80px;
}

.block-3 {
    bottom: 10%;
    left: 15%;
    width: 90px;
    height: 70px;
}

.block-4 {
    bottom: 15%;
    right: 10%;
    width: 110px;
    height: 60px;
}

/* Client location */
.client-location {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 20;
    text-align: center;
}

.location-pin {
    position: relative;
    width: 40px;
    height: 40px;
    margin: 0 auto;
}

.pin-circle {
    width: 32px;
    height: 32px;
    background: #e74c3c;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    position: relative;
    box-shadow: 0 3px 10px rgba(231, 76, 60, 0.4);
}

.pin-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
}

.location-pulse {
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    background: rgba(231, 76, 60, 0.3);
    border-radius: 50%;
    animation: map-pulse 2s infinite;
}

@keyframes map-pulse {
    0% {
        width: 32px;
        height: 32px;
        opacity: 0.5;
    }
    100% {
        width: 60px;
        height: 60px;
        opacity: 0;
    }
}

.location-label {
    display: inline-block;
    margin-top: 25px;
    padding: 4px 12px;
    background: white;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Technician positions */
.tech-position {
    position: absolute;
    z-index: 15;
    text-align: center;
}

.tech-marker {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    border: 3px solid white;
    position: relative;
    background: white;
}

.tech-marker.available {
    animation: float-marker 3s ease-in-out infinite;
}

.tech-map-photo {
    width: 45px;
    height: 45px;
    border-radius: 8px;
    object-fit: cover;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    display: block;
}

.tech-marker.available .tech-map-photo {
    border-color: #4CAF50;
}

.tech-marker.busy .tech-map-photo {
    border-color: #FFC107;
}

.status-dot {
    position: absolute;
    top: 0;
    right: 0;
    width: 14px;
    height: 14px;
    background: #4CAF50;
    border: 2px solid white;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    animation: pulse-status 2s infinite;
}

.status-dot.busy {
    background: #FFC107;
    animation: none;
}

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

.tech-marker.busy {
    opacity: 0.85;
}

@keyframes float-marker {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

.tech-connector {
    position: absolute;
    pointer-events: none;
}

.tech-connector.left {
    left: -80px;
    top: 50%;
    transform: translateY(-50%);
}

.tech-connector.right {
    right: -80px;
    top: 50%;
    transform: translateY(-50%);
}

.connector-line {
    position: absolute;
    width: 60px;
    height: 1px;
    background: #ccc;
    top: 50%;
}

.tech-connector.left .connector-line {
    right: 100%;
    margin-right: 10px;
}

.tech-connector.right .connector-line {
    left: 100%;
    margin-left: 10px;
}

.tech-info-bubble {
    background: white;
    border-radius: 8px;
    padding: 6px 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    white-space: nowrap;
    position: absolute;
    z-index: 10;
}

.tech-connector.left .tech-info-bubble {
    margin-left: -140px;
}

.tech-connector.right .tech-info-bubble {
    margin-right: -140px;
}

.tech-info-bubble strong {
    display: block;
    color: var(--primary-color);
    font-size: 0.85rem;
    margin-bottom: 2px;
}

.tech-info-bubble span {
    display: block;
    font-size: 0.75rem;
    color: #666;
}

.tech-info-bubble.busy {
    background: #fff3e0;
}

.tech-info-bubble.busy span {
    color: #FF9800;
}

.tech-info-block {
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

.availability-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f0f0f0;
    margin-bottom: 1.5rem;
}

.availability-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.badge-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    box-shadow: 0 3px 10px rgba(76, 175, 80, 0.3);
}

.badge-text {
    font-size: 0.95rem;
    color: var(--primary-color);
    font-weight: 600;
}

.response-time {
    text-align: right;
}

.time-icon {
    font-size: 1.2rem;
}

.time-text {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: #4CAF50;
    margin: 0.2rem 0;
}

.time-label {
    display: block;
    font-size: 0.75rem;
    color: #999;
}

.technicians-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.technician-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1rem;
    transition: all 0.2s;
    border: 1px solid transparent;
}

.technician-card:hover {
    transform: translateX(5px);
    border-color: #e0e0e0;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
}

.tech-photo-wrapper {
    position: relative;
    width: 55px;
    height: 55px;
    flex-shrink: 0;
}

.tech-real-photo {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    object-fit: cover;
    border: 2px solid #e0e0e0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.technician-card.available .tech-real-photo {
    border-color: #4CAF50;
}

.technician-card.busy .tech-real-photo {
    border-color: #FFC107;
}

.status-indicator {
    position: absolute;
    bottom: -3px;
    right: -3px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid white;
    z-index: 1;
}

.status-indicator.available {
    background: #4CAF50;
    animation: pulse-indicator 2s infinite;
}

.status-indicator.busy {
    background: #FFC107;
}

@keyframes pulse-indicator {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(76, 175, 80, 0);
    }
}

.tech-details strong {
    display: block;
    color: var(--primary-color);
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}

.tech-specialty {
    display: block;
    color: #999;
    font-size: 0.75rem;
}

.card-stats {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.85rem;
    color: #666;
}

.stat-icon {
    font-size: 0.9rem;
    opacity: 0.7;
}

.available-badge,
.busy-badge {
    margin-left: auto;
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
}

.available-badge {
    background: #e8f5e9;
    color: #4CAF50;
}

.busy-badge {
    background: #fff3e0;
    color: #FF9800;
}

.technician-card.busy {
    opacity: 0.7;
}

.emergency-call-btn {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, var(--secondary-color), #ff6b6b);
    border-radius: 15px;
    padding: 1rem;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(231, 76, 60, 0.25);
}

.emergency-call-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.35);
}

.call-btn-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.call-icon {
    font-size: 1.8rem;
}

.call-info {
    flex: 1;
}

.call-number {
    display: block;
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
}

.call-label {
    display: block;
    color: rgba(255,255,255,0.9);
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .map-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .radar-map {
        max-width: 350px;
    }
    
    .tech-info-block {
        max-width: 400px;
        margin: 0 auto;
    }
}

.advantages {
    background: var(--light-bg);
    padding: 4rem 0;
}

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

.advantage-item {
    display: flex;
    gap: 1.5rem;
}

.advantage-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.advantage-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.pricing {
    padding: 4rem 0;
    background: var(--white);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.pricing-card {
    background: var(--white);
    border: 2px solid #dee2e6;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    position: relative;
}

.pricing-card.featured {
    border-color: var(--secondary-color);
    transform: scale(1.05);
}

.pricing-card.featured .badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.3rem 1rem;
    border-radius: 15px;
    font-size: 0.9rem;
}

.price {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin: 1rem 0;
}

.price-from {
    font-size: 0.9rem;
    color: #6c757d;
}

.pricing-features {
    list-style: none;
    margin: 1.5rem 0;
}

.pricing-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f1f3f5;
}

.testimonials {
    background: var(--light-bg);
    padding: 4rem 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.stars {
    color: #ffc107;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
    color: #495057;
}

.testimonial-author {
    font-weight: bold;
    color: var(--primary-color);
}

.cta-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #c0392b 100%);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 10px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #dee2e6;
    border-radius: 5px;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    padding: 0.3rem 0;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer-section a:hover {
    opacity: 0.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Sticky Rating Box */
.sticky-rating-box {
    position: fixed;
    top: -200px;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.98) 0%, 
        rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(20px);
    box-shadow: 0 5px 30px rgba(0,0,0,0.15);
    border-bottom: 2px solid rgba(231, 76, 60, 0.1);
    z-index: 999;
    transition: top 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sticky-rating-box.show {
    top: 0;
}

.sticky-rating-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 30px;
}

.sticky-rating-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.sticky-rating-stars {
    display: flex;
    gap: 2px;
    font-size: 1rem;
    color: #FFD700;
}

.sticky-rating-number {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary-color);
}

.sticky-rating-count {
    font-size: 0.85rem;
    color: #666;
}

.sticky-verified-icon {
    display: flex;
    align-items: center;
    gap: 4px;
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    color: #27ae60;
    font-weight: 600;
}

.sticky-verified-icon svg {
    width: 14px;
    height: 14px;
}

.sticky-divider {
    width: 1px;
    height: 25px;
    background: #e0e0e0;
    margin: 0 5px;
}

.sticky-info {
    display: flex;
    gap: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
}

.sticky-highlight {
    color: var(--secondary-color);
}

.sticky-urgency {
    font-size: 0.85rem;
    color: #666;
    padding: 0 10px;
}

.sticky-call-btn {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s;
    box-shadow: 0 3px 10px rgba(231, 76, 60, 0.3);
}

.sticky-call-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
}

/* Additional keyframes from second style section */
@keyframes pulse-btn {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes float {
    0%, 100% { transform: rotate(5deg) translateY(0); }
    50% { transform: rotate(5deg) translateY(-5px); }
}

/* Additional keyframes from third style section */
@keyframes pulse-button {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

/* Add keyframe for shimmer animation used in inline styles */
@keyframes shimmer {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Mobile optimizations from third style section */
@media (max-width: 768px) {
    .emergency-section {
        padding: 2rem 0;
    }
    
    .emergency-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .emergency-card {
        box-shadow: 0 2px 6px rgba(0,0,0,0.06);
    }
    
    .emergency-card-content {
        padding: 1rem;
    }
    
    .emergency-card-image {
        height: 140px;
    }
    
    .emergency-card h3 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    
    .emergency-card p {
        font-size: 0.85rem;
        line-height: 1.5;
        margin-bottom: 10px;
    }
    
    .emergency-badge {
        padding: 5px 10px;
        font-size: 0.8rem;
        margin-top: 8px;
    }
    
    .emergency-badge svg {
        width: 12px;
        height: 12px;
    }
    
    .emergency-cta {
        margin-top: 1.5rem;
    }
    
    .emergency-phone {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .sticky-rating-container {
        padding: 10px 15px;
    }
    
    .sticky-rating-content {
        gap: 10px;
    }
    
    .sticky-rating-stars {
        font-size: 0.9rem;
    }
    
    .sticky-rating-number {
        font-size: 1rem;
    }
    
    .sticky-rating-count {
        font-size: 0.75rem;
    }
    
    .sticky-info {
        font-size: 1rem;
    }
    
    .sticky-urgency {
        display: none;
    }
    
    .sticky-divider {
        display: none;
    }
    
    .sticky-call-btn {
        padding: 6px 15px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .sticky-rating-content {
        gap: 8px;
    }
    
    .sticky-verified-icon span {
        display: none;
    }
    
    .sticky-info {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .logo {
        font-size: 1.4rem;
    }
    
    .logo-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .call-btn {
        padding: 10px 20px;
        font-size: 1rem;
    }
    
    .hero-section {
        margin-bottom: 220px;
    }
    
    .hero-image-wrapper {
        height: 60vh;
        min-height: 400px;
    }
    
    .hero-content {
        width: 95%;
        bottom: -210px;
    }
    
    .hero-title-box {
        padding: 25px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-accent {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .hero-btn {
        padding: 15px 35px;
        font-size: 1.05rem;
    }
    
    .mini-testimonial {
        margin-top: 15px;
    }
    
    .quick-review {
        padding: 8px 12px;
        gap: 10px;
    }
    
    .review-avatar {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    
    .review-text {
        font-size: 0.8rem;
    }
    
    .rating-section {
        padding-bottom: 15px;
        margin-bottom: 15px;
        flex-wrap: wrap;
    }
    
    .rating-stars {
        font-size: 1rem;
    }
    
    .rating-number {
        font-size: 1.1rem;
    }
    
    .rating-count {
        font-size: 0.85rem;
    }
    
    .emergency-grid,
    .pricing-cards,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .services-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .service-item {
        padding: 1.5rem 1rem;
        min-height: 150px;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 0.8rem;
    }
    
    .service-icon svg {
        width: 30px;
        height: 30px;
    }
    
    .service-content h3 {
        font-size: 1rem;
    }
    
    .service-content p {
        font-size: 0.85rem;
    }
    
    .emergency-card {
        flex-direction: column;
    }
    
    .emergency-card-content {
        padding: 1.2rem;
    }
    
    .emergency-card-image {
        height: 160px;
        object-position: center 35%;
    }
    
    .emergency-card h3 {
        font-size: 1.2rem;
    }
    
    .emergency-card p {
        font-size: 0.9rem;
    }
    
    .emergency-cta {
        margin-top: 2rem;
    }
    
    .emergency-phone {
        padding: 12px 20px;
        gap: 8px;
    }
    
    .emergency-number {
        font-size: 1rem;
    }
    
    .pulse-dot {
        width: 10px;
        height: 10px;
    }
    
    .emergency-title {
        font-size: 1.8rem;
    }
    
    .emergency-subtitle {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
}

/* More comprehensive mobile optimizations from third style section */
@media (max-width: 768px) {
    section {
        padding: 40px 0 !important;
    }
    
    .container {
        padding: 0 15px !important;
    }
    
    h1 {
        font-size: 1.8rem !important;
        line-height: 1.3 !important;
    }
    
    h2 {
        font-size: 1.5rem !important;
        line-height: 1.3 !important;
        margin-bottom: 15px !important;
    }
    
    h3 {
        font-size: 1.2rem !important;
    }
    
    p {
        font-size: 0.95rem !important;
        line-height: 1.5 !important;
        margin-bottom: 12px !important;
    }
    
    .services-grid,
    .advantages-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
    
    .hero-section {
        margin-bottom: 150px !important;
    }
    
    .hero-content {
        bottom: -130px !important;
        width: 95% !important;
    }
    
    .hero-title-box {
        padding: 20px !important;
        border-radius: 15px !important;
    }
    
    .hero-image-wrapper {
        height: 50vh !important;
        min-height: 350px !important;
    }
    
    .certification-section {
        padding: 30px 0 !important;
    }
    
    .certification-content {
        padding: 20px !important;
    }
    
    .cert-badge {
        width: 60px !important;
        height: 60px !important;
        font-size: 1.5rem !important;
    }
    
    .cert-image-wrapper {
        max-width: 150px !important;
        margin: 15px auto !important;
    }
    
    .cert-features {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
        margin-top: 20px !important;
    }
    
    .cert-feature {
        padding: 12px !important;
    }
    
    .testimonials > div {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .contact-form {
        padding: 20px !important;
    }
    
    .form-group {
        margin-bottom: 15px !important;
    }
    
    .btn, .call-btn {
        padding: 12px 25px !important;
        font-size: 1rem !important;
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    .service-card {
        padding: 20px !important;
        margin-bottom: 15px !important;
    }
    
    div[style*="grid-template-columns: repeat(auto-fit, minmax(260px"] {
        grid-template-columns: 1fr !important;
    }
    
    div[style*="grid-template-columns: repeat(auto-fit, minmax(200px"] {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }
    
    * {
        margin-top: 0 !important;
    }
    
    div[style*="margin-top: 60px"],
    div[style*="margin-top: 50px"],
    div[style*="margin-top: 40px"] {
        margin-top: 25px !important;
    }
    
    div[style*="margin-bottom: 60px"],
    div[style*="margin-bottom: 50px"],
    div[style*="margin-bottom: 40px"] {
        margin-bottom: 20px !important;
    }
    
    p[style*="max-width"] {
        max-width: 100% !important;
    }
    
    .tech-card img {
        width: 70px !important;
        height: 70px !important;
    }
    
    header {
        padding: 10px 0 !important;
    }
    
    .header-content {
        flex-direction: row !important;
    }
    
    .logo {
        font-size: 1.3rem !important;
    }
    
    .pricing-table {
        font-size: 0.85rem !important;
    }
    
    .badge {
        padding: 5px 10px !important;
        font-size: 0.8rem !important;
    }
    
    div[style*="font-size: 3rem"],
    p[style*="font-size: 3rem"] {
        font-size: 2rem !important;
    }
    
    div[style*="font-size: 2.5rem"],
    p[style*="font-size: 2.5rem"] {
        font-size: 1.8rem !important;
    }
    
    div[style*="font-size: 2.2rem"],
    p[style*="font-size: 2.2rem"] {
        font-size: 1.6rem !important;
    }
    
    div[style*="font-size: 2rem"],
    p[style*="font-size: 2rem"] {
        font-size: 1.4rem !important;
    }
    
    @media (max-width: 380px) {
        .container {
            padding: 0 10px !important;
        }
        
        h1 {
            font-size: 1.5rem !important;
        }
        
        h2 {
            font-size: 1.3rem !important;
        }
        
        .call-btn {
            font-size: 0.9rem !important;
            padding: 10px 20px !important;
        }
    }
}

@media (max-width: 768px) {
    html {
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }
    
    * {
        -webkit-tap-highlight-color: transparent;
    }
}

/* Now I'll add CSS classes for the most common inline styles */

/* Header styles */
.header-content-style {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Technician availability section styles */
.section-bg-gradient {
    background: linear-gradient(180deg, #f8f9fa 0%, white 100%);
    padding: 1.5rem 0;
    margin-top: -20px;
    position: relative;
    z-index: 10;
}

.max-width-container {
    max-width: 850px;
    margin: 0 auto;
}

.tech-card-wrapper {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border: 2px solid #e8f5e9;
    position: relative;
}

.shimmer-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #4CAF50, #45a049, #4CAF50);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

.flex-between-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.flex-items-gap {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    flex: 1;
}

.relative-shrink {
    position: relative;
    flex-shrink: 0;
}

.tech-avatar {
    width: 65px;
    height: 65px;
    border-radius: 10px;
    object-fit: cover;
    border: 2px solid #4CAF50;
    box-shadow: 0 3px 10px rgba(76, 175, 80, 0.2);
}

.status-dot-online {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 16px;
    height: 16px;
    background: #4CAF50;
    border-radius: 50%;
    border: 2px solid white;
    animation: pulse 2s infinite;
}

.flex-items-gap-10 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 3px;
}

.tech-name {
    color: var(--primary-color);
    margin: 0;
    font-size: 1.05rem;
    font-weight: 700;
}

.available-badge {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    padding: 3px 8px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    animation: pulse 2s infinite;
}

.flex-nowrap-gap {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
    flex-wrap: nowrap;
}

.rating-text {
    color: #FFC107;
    font-size: 0.85rem;
    white-space: nowrap;
}

.distance-text {
    color: #666;
    font-size: 0.75rem;
    white-space: nowrap;
}

.location-icon {
    display: inline;
    vertical-align: middle;
    margin-right: 2px;
}

.time-text {
    color: #4CAF50;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

.availability-quote {
    margin: 0;
    color: #666;
    font-size: 0.75rem;
    font-style: italic;
}

.cta-button {
    background: linear-gradient(135deg, var(--secondary-color), #ff6b6b);
    color: white;
    padding: 0.7rem 1.3rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 3px 15px rgba(231, 76, 60, 0.25);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    flex-shrink: 0;
}

.phone-icon {
    font-size: 1.1rem;
}

.call-info-small {
    font-size: 0.65rem;
    opacity: 0.9;
}

.call-number-text {
    font-size: 0.95rem;
    font-weight: 700;
}

.stats-container {
    margin-top: 15px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    padding: 12px 20px;
    display: inline-block;
    border: 1px solid rgba(0,0,0,0.05);
}

.stats-flex {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stats-icon-wrapper {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    border-radius: 10px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stats-label {
    font-size: 0.75rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.stats-number-flex {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.stats-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
}

.stats-suffix {
    font-size: 0.9rem;
    color: #666;
}

/* Section headers */
.section-header {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 10px;
    text-align: center;
    font-weight: 600;
}

.highlight-text {
    color: #e74c3c;
}

.section-description {
    text-align: center;
    color: #777;
    font-size: 1rem;
    margin-bottom: 35px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Emergency card headers */
.card-title {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 10px;
}

.emergency-badge-blue {
    background: #f0f8ff;
    color: #3498db;
    padding: 5px 12px;
    border-radius: 15px;
    display: inline-block;
    font-size: 0.85rem;
    margin-top: 10px;
}

.emergency-badge-red {
    background: #fff5f5;
    color: #e74c3c;
    padding: 5px 12px;
    border-radius: 15px;
    display: inline-block;
    font-size: 0.85rem;
    margin-top: 10px;
    font-weight: 600;
}

/* Service discovery button */
.service-discovery-btn {
    background: transparent;
    border: 2px solid #3498db;
    color: #3498db;
    padding: 12px 24px;
    border-radius: 8px;
    margin-top: 20px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.4s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.btn-content-flex {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-text-spacing {
    letter-spacing: 0.5px;
}

.btn-arrow {
    transition: transform 0.3s;
}

/* Display utilities */
.display-contents {
    display: contents;
}

.display-none {
    display: none;
}

/* Map positioning */
.map-tech-position-1 {
    top: 20%;
    left: 25%;
}

.map-tech-position-2 {
    top: 35%;
    right: 25%;
}

.map-tech-position-3 {
    bottom: 25%;
    left: 20%;
}

.tech-bubble-position-1 {
    top: 55px;
    left: -30px;
}

.tech-bubble-position-2 {
    bottom: 55px;
    left: -30px;
}

.time-flex {
    display: flex;
    align-items: center;
    gap: 3px;
}

.time-block {
    display: block;
    color: #4CAF50;
    font-size: 0.7rem;
    margin-top: 2px;
}

/* Availability badges for technicians */
.tech-available-gradient {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    font-weight: 600;
    animation: pulse 2s infinite;
}

.tech-busy-gradient {
    background: linear-gradient(135deg, #ff5722, #e64a19);
    color: white;
}

.time-estimate {
    color: #ff5722;
    font-weight: 600;
}

/* Special offers section */
.offer-section {
    padding: 6rem 0 3rem 0;
}

.offer-container {
    max-width: 900px;
    margin: 0 auto;
}

.offer-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    overflow: visible;
    border: 1px solid #e5e5e5;
    position: relative;
}

.offer-image-container {
    position: relative;
    height: 280px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
    border-radius: 15px 15px 0 0;
}

.offer-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(1.1) contrast(1.1) saturate(1.2);
}

.offer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.15) 100%);
}

.price-badge {
    position: absolute;
    top: -70px;
    left: 20px;
    z-index: 10;
}

.price-card {
    background: white;
    border: 2px solid #e74c3c;
    border-radius: 12px;
    padding: 12px 15px;
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.2), 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    width: 140px;
}

.promo-label {
    background: linear-gradient(135deg, #e74c3c, #ff6b6b);
    color: white;
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 0.6rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

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

.price-from-text {
    color: #666;
    font-size: 0.7rem;
    margin-bottom: 3px;
    font-weight: 500;
}

.price-large {
    color: #e74c3c;
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1;
    margin: 3px 0;
}

.price-disclaimer {
    color: #999;
    font-size: 0.6rem;
    margin-top: 6px;
    padding-top: 6px;
    border-top: 1px solid #f0f0f0;
    line-height: 1.2;
}

.price-asterisk {
    color: #e74c3c;
}

.offer-content {
    padding: 2rem;
}

.offer-title {
    color: #2c3e50;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 700;
}

.countdown-container {
    background: #fff5f5;
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.countdown-text {
    text-align: center;
    color: #c0392b;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.timer-unit {
    text-align: center;
}

.timer-number {
    background: white;
    border: 2px solid #e74c3c;
    color: #e74c3c;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 1.5rem;
    font-weight: 800;
    min-width: 50px;
}

.timer-colon {
    display: flex;
    align-items: center;
    color: #e74c3c;
    font-size: 1.3rem;
}

.timer-label {
    color: #999;
    font-size: 0.65rem;
    margin-top: 3px;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    color: #555;
}

.feature-check {
    color: #4CAF50;
    margin-right: 8px;
}

.feature-text {
    font-size: 0.95rem;
}

.stock-warning {
    background: #fff9e6;
    border: 1px solid #ffd966;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 1.5rem;
    text-align: center;
}

.warning-text {
    margin: 0;
    color: #856404;
    font-size: 0.9rem;
}

.stock-count {
    color: #e74c3c;
}

.disclaimer-text {
    text-align: center;
    color: #666;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 8px;
}

.cta-center {
    text-align: center;
}

.primary-cta-btn {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 14px 35px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Testimonials section */
.testimonials-bg {
    padding: 3rem 0;
    background: #f8f9fa;
}

.testimonial-container {
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 1.5rem;
    position: relative;
}

.testimonial-stars {
    color: #FFC107;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author {
    color: #333;
    font-weight: 600;
    margin: 0;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 1.5rem;
}

.testimonial-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e74c3c;
    cursor: pointer;
    transition: all 0.3s;
}

.testimonial-dot.active {
    background: #c0392b;
    transform: scale(1.2);
}

/* Additional utility classes for inline styles */

/* Layout utilities */
.flex-between-center {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flex-between-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

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

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

.flex-center-gap-3 {
    display: flex;
    align-items: center;
    gap: 3px;
}

.flex-baseline-gap-5 {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.flex-column-gap-15 {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
}

.grid-2-cols-gap-15 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.grid-auto-fit-200 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.grid-auto-fit-260 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.grid-auto-fit-280 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

/* Text utilities */
.text-center {
    text-align: center;
}

.text-primary {
    color: var(--primary-color);
}

.text-secondary {
    color: var(--secondary-color);
}

.text-success {
    color: #4CAF50;
}

.text-warning {
    color: #ff9800;
}

.text-muted {
    color: #666;
}

.text-light {
    color: #999;
}

.text-white {
    color: white;
}

.font-xs {
    font-size: 0.65rem;
}

.font-sm {
    font-size: 0.75rem;
}

.font-base {
    font-size: 0.95rem;
}

.font-lg {
    font-size: 1.1rem;
}

.font-xl {
    font-size: 1.5rem;
}

.font-2xl {
    font-size: 1.8rem;
}

.font-3xl {
    font-size: 2.2rem;
}

.font-weight-500 {
    font-weight: 500;
}

.font-weight-600 {
    font-weight: 600;
}

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

.font-weight-800 {
    font-weight: 800;
}

.font-weight-900 {
    font-weight: 900;
}

.line-height-1-6 {
    line-height: 1.6;
}

.letter-spacing-05 {
    letter-spacing: 0.5px;
}

.text-italic {
    font-style: italic;
}

.text-uppercase {
    text-transform: uppercase;
}

.white-space-nowrap {
    white-space: nowrap;
}

/* Spacing utilities */
.m-0 {
    margin: 0;
}

.mb-3 {
    margin-bottom: 3px;
}

.mb-5 {
    margin-bottom: 5px;
}

.mb-8 {
    margin-bottom: 8px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-15 {
    margin-bottom: 15px;
}

.mb-20 {
    margin-bottom: 20px;
}

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

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

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

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

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

.mt-3rem {
    margin-top: 3rem;
}

.mr-2 {
    margin-right: 2px;
}

.mr-8 {
    margin-right: 8px;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.p-0 {
    padding: 0;
}

.p-10 {
    padding: 10px;
}

.p-12 {
    padding: 12px;
}

.p-15 {
    padding: 15px;
}

.p-20 {
    padding: 20px;
}

.px-8 {
    padding-left: 8px;
    padding-right: 8px;
}

.px-10 {
    padding-left: 10px;
    padding-right: 10px;
}

.px-12 {
    padding-left: 12px;
    padding-right: 12px;
}

.px-20 {
    padding-left: 20px;
    padding-right: 20px;
}

.py-3 {
    padding-top: 3px;
    padding-bottom: 3px;
}

.py-5 {
    padding-top: 5px;
    padding-bottom: 5px;
}

.py-8 {
    padding-top: 8px;
    padding-bottom: 8px;
}

.py-12 {
    padding-top: 12px;
    padding-bottom: 12px;
}

.py-15 {
    padding-top: 15px;
    padding-bottom: 15px;
}

.py-20 {
    padding-top: 20px;
    padding-bottom: 20px;
}

.pt-6 {
    padding-top: 6px;
}

.pb-6 {
    padding-bottom: 6px;
}

/* Position utilities */
.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.top-0 {
    top: 0;
}

.left-0 {
    left: 0;
}

.right-0 {
    right: 0;
}

.bottom-0 {
    bottom: 0;
}

.z-10 {
    z-index: 10;
}

.z-20 {
    z-index: 20;
}

/* Size utilities */
.w-full {
    width: 100%;
}

.h-full {
    height: 100%;
}

.w-65 {
    width: 65px;
}

.h-65 {
    height: 65px;
}

.w-16 {
    width: 16px;
}

.h-16 {
    height: 16px;
}

.w-140 {
    width: 140px;
}

.min-w-50 {
    min-width: 50px;
}

.max-w-850 {
    max-width: 850px;
}

.max-w-700 {
    max-width: 700px;
}

.max-w-500 {
    max-width: 500px;
}

.max-w-900 {
    max-width: 900px;
}

/* Flex utilities */
.flex {
    display: flex;
}

.flex-1 {
    flex: 1;
}

.flex-shrink-0 {
    flex-shrink: 0;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-nowrap {
    flex-wrap: nowrap;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.align-center {
    align-items: center;
}

.align-baseline {
    align-items: baseline;
}

.gap-3 {
    gap: 3px;
}

.gap-5 {
    gap: 5px;
}

.gap-8 {
    gap: 8px;
}

.gap-10 {
    gap: 10px;
}

.gap-12 {
    gap: 12px;
}

.gap-15 {
    gap: 15px;
}

/* Grid utilities */
.grid {
    display: grid;
}

.grid-gap-12 {
    gap: 12px;
}

.grid-gap-15 {
    gap: 15px;
}

/* Border utilities */
.border-radius-8 {
    border-radius: 8px;
}

.border-radius-10 {
    border-radius: 10px;
}

.border-radius-12 {
    border-radius: 12px;
}

.border-radius-15 {
    border-radius: 15px;
}

.border-radius-50 {
    border-radius: 50%;
}

.border-top-f0 {
    border-top: 1px solid #f0f0f0;
}

.border-left-3-primary {
    border-left: 3px solid var(--primary-color);
}

.border-2-success {
    border: 2px solid #4CAF50;
}

.border-2-secondary {
    border: 2px solid var(--secondary-color);
}

.border-1-e0 {
    border: 1px solid #e0e0e0;
}

/* Background utilities */
.bg-white {
    background: white;
}

.bg-light {
    background: #f8f9fa;
}

.bg-success-light {
    background: #e8f5e9;
}

.bg-info-light {
    background: #f0f8ff;
}

.bg-danger-light {
    background: #fff5f5;
}

.bg-warning-light {
    background: #fff9e6;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-color), #34495e);
}

.bg-gradient-secondary {
    background: linear-gradient(135deg, var(--secondary-color), #ff6b6b);
}

.bg-gradient-success {
    background: linear-gradient(135deg, #4CAF50, #45a049);
}

.bg-gradient-info {
    background: linear-gradient(135deg, #3498db, #5dade2);
}

.bg-gradient-warning {
    background: linear-gradient(135deg, #ff9800, #ffb74d);
}

.bg-gradient-danger {
    background: linear-gradient(135deg, #e74c3c, #ff6b6b);
}

.bg-gradient-vertical {
    background: linear-gradient(180deg, #f8f9fa 0%, white 100%);
}

/* Shadow utilities */
.shadow-sm {
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.shadow {
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.shadow-lg {
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.shadow-primary {
    box-shadow: 0 3px 15px rgba(231, 76, 60, 0.25);
}

.shadow-primary-hover {
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.shadow-success {
    box-shadow: 0 3px 10px rgba(76, 175, 80, 0.2);
}

.shadow-success-hover {
    box-shadow: 0 5px 20px rgba(76, 175, 80, 0.3);
}

/* Transition utilities */
.transition {
    transition: all 0.3s;
}

.transition-ease {
    transition: all 0.3s ease;
}

.transition-ease-4 {
    transition: all 0.4s ease;
}

/* Opacity utilities */
.opacity-90 {
    opacity: 0.9;
}

.opacity-95 {
    opacity: 0.95;
}

/* Animation utilities */
.animate-pulse {
    animation: pulse 2s infinite;
}

.animate-shimmer {
    animation: shimmer 3s ease-in-out infinite;
}

/* Button utilities */
.btn-gradient-primary {
    background: linear-gradient(135deg, var(--secondary-color), #ff6b6b);
    color: white;
    padding: 0.7rem 1.3rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 3px 15px rgba(231, 76, 60, 0.25);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-gradient-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(231, 76, 60, 0.35);
}

.btn-gradient-success {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
}

.btn-gradient-info {
    background: linear-gradient(135deg, #3498db, #5dade2);
    color: white;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
}

.btn-outline-info {
    background: transparent;
    border: 2px solid #3498db;
    color: #3498db;
    padding: 12px 24px;
    border-radius: 8px;
    margin-top: 20px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.4s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.btn-white-secondary {
    background: white;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.btn-price-cta {
    background: linear-gradient(135deg, var(--secondary-color), #c0392b);
    color: white;
    padding: 14px 35px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Card utilities */
.card-white {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border: 2px solid #e8f5e9;
    position: relative;
}

.card-white-shadow {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 1.5rem;
    position: relative;
}

.card-offer {
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    overflow: visible;
    border: 1px solid #e5e5e5;
    position: relative;
}

.card-service {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 1px solid #e0e0e0;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.card-testimonial {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 1.5rem;
    position: relative;
}

.card-stats {
    margin-top: 15px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    padding: 12px 20px;
    display: inline-block;
    border: 1px solid rgba(0,0,0,0.05);
}

.card-price {
    background: white;
    border: 2px solid var(--secondary-color);
    border-radius: 12px;
    padding: 12px 15px;
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.2), 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    width: 140px;
}

/* Badge utilities */
.badge-available {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    padding: 3px 8px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    animation: pulse 2s infinite;
}

.badge-success {
    background: #e8f5e9;
    color: #4CAF50;
    padding: 5px 10px;
    border-radius: 5px;
    display: inline-block;
    margin-top: 10px;
    font-size: 0.8rem;
    font-weight: 600;
}

.badge-info {
    background: #f0f8ff;
    color: #3498db;
    padding: 5px 12px;
    border-radius: 15px;
    display: inline-block;
    font-size: 0.85rem;
    margin-top: 10px;
}

.badge-danger {
    background: #fff5f5;
    color: var(--secondary-color);
    padding: 5px 12px;
    border-radius: 15px;
    display: inline-block;
    font-size: 0.85rem;
    margin-top: 10px;
    font-weight: 600;
}

.badge-warning {
    background: #fff9e6;
    border: 1px solid #ffd966;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 1.5rem;
    text-align: center;
}

.badge-promo {
    background: linear-gradient(135deg, var(--secondary-color), #ff6b6b);
    color: white;
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 0.6rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

/* Icon utilities */
.icon-inline {
    display: inline;
    vertical-align: middle;
    margin-right: 2px;
}

.icon-phone {
    font-size: 1.1rem;
}

/* Avatar utilities */
.avatar-tech {
    width: 65px;
    height: 65px;
    border-radius: 10px;
    object-fit: cover;
    border: 2px solid #4CAF50;
    box-shadow: 0 3px 10px rgba(76, 175, 80, 0.2);
}

.status-dot {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 16px;
    height: 16px;
    background: #4CAF50;
    border-radius: 50%;
    border: 2px solid white;
    animation: pulse 2s infinite;
}

/* Overlay utilities */
.overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.15) 100%);
}

.shimmer-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #4CAF50, #45a049, #4CAF50);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

/* Countdown utilities */
.countdown-wrapper {
    background: #fff5f5;
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.timer-display {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.timer-unit {
    text-align: center;
}

.timer-number {
    background: white;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 1.5rem;
    font-weight: 800;
    min-width: 50px;
}

.timer-separator {
    display: flex;
    align-items: center;
    color: var(--secondary-color);
    font-size: 1.3rem;
}

.timer-label {
    color: #999;
    font-size: 0.65rem;
    margin-top: 3px;
}

/* Image utilities */
.img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(1.1) contrast(1.1) saturate(1.2);
}

.img-offer-bg {
    position: relative;
    height: 280px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
    border-radius: 15px 15px 0 0;
}

/* Dot utilities */
.dots-container {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 1.5rem;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--secondary-color);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: #c0392b;
    transform: scale(1.2);
}

/* Special classes for common combinations */
.section-padding {
    padding: 6rem 0 3rem 0;
}

.section-bg-gradient {
    background: linear-gradient(180deg, #f8f9fa 0%, white 100%);
    padding: 1.5rem 0;
    margin-top: -20px;
    position: relative;
    z-index: 10;
}

.feature-check-item {
    display: flex;
    align-items: center;
    color: #555;
}

.feature-check {
    color: #4CAF50;
    margin-right: 8px;
}

.display-contents {
    display: contents;
}

.display-none {
    display: none;
}

.display-block {
    display: block;
}

.display-inline-flex {
    display: inline-flex;
}

/* ==========================================
   INLINE STYLES EXTRACTED FROM HTML
   ========================================== */

/* Layout & Container Styles */
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.container-900 { max-width: 900px; margin: 0 auto; }
.container-850 { max-width: 850px; margin: 0 auto; }
.container-700 { max-width: 700px; margin: 0 auto; }

/* Grid Layouts */
.grid-auto-300 { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 2rem; 
    max-width: 1000px; 
    margin: 0 auto; 
}

.grid-auto-280 { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 2rem; 
}

.grid-auto-260 { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); 
    gap: 2rem; 
}

.grid-2-col { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 15px; 
    margin-bottom: 1.5rem; 
}

/* Background Gradients */
.bg-green-gradient { background: linear-gradient(135deg, #4CAF50, #45a049); }
.bg-red-gradient { background: linear-gradient(135deg, #e74c3c, #c0392b); }
.bg-blue-gradient { background: linear-gradient(135deg, #3498db, #5dade2); }
.bg-light-gradient { background: linear-gradient(180deg, #f8f9fa 0%, white 100%); }

/* Solid Backgrounds */
.bg-white { background: white; }
.bg-light { background: #f8f9fa; }
.bg-footer { background: #2c3e50; color: #ecf0f1; }

/* Card Components */
.card-primary {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border: 2px solid #e8f5e9;
    position: relative;
}

.service-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #e5e5e5;
    transition: all 0.3s;
    cursor: pointer;
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 1.5rem;
    position: relative;
}

/* Button Styles */
.btn-call-primary {
    background: linear-gradient(135deg, var(--secondary-color), #ff6b6b);
    color: white;
    padding: 0.7rem 1.3rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 3px 15px rgba(231, 76, 60, 0.25);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-outline {
    background: transparent;
    border: 2px solid #3498db;
    color: #3498db;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.4s ease;
}

/* Badge Components */
.badge-available {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    padding: 3px 8px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    animation: pulse 2s infinite;
}

.badge-emergency {
    background: #fff5f5;
    color: #e74c3c;
    padding: 5px 12px;
    border-radius: 15px;
    display: inline-block;
    font-size: 0.85rem;
    margin-top: 10px;
    font-weight: 600;
}

.badge-info {
    background: #f0f8ff;
    color: #3498db;
    padding: 5px 12px;
    border-radius: 15px;
    display: inline-block;
    font-size: 0.85rem;
    margin-top: 10px;
}

/* Typography */
.heading-xl {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 10px;
    text-align: center;
    font-weight: 600;
}

.heading-lg {
    color: #2c3e50;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 700;
}

.heading-md {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 10px;
}

.text-muted { color: #666; font-size: 0.85rem; }
.text-small { font-size: 0.75rem; }
.text-italic { font-style: italic; }

/* Positioning */
.absolute-top-left { position: absolute; top: 0; left: 0; }
.absolute-top-right { position: absolute; top: 0; right: 0; }
.absolute-bottom-right { position: absolute; bottom: -2px; right: -2px; }

/* Spacing Utilities */
.p-5-0 { padding: 5px 0; }
.p-15 { padding: 1.5rem; }
.p-20 { padding: 2rem; }
.mb-10 { margin-bottom: 10px; }
.mb-20 { margin-bottom: 20px; }
.mt-15 { margin-top: 15px; }

/* Floating Call Button */
.floating-call-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--secondary-color), #ff6b6b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 25px rgba(231, 76, 60, 0.4);
    z-index: 1000;
    text-decoration: none;
    transition: all 0.3s;
    animation: float-button 3s ease-in-out infinite;
}

/* Special Components */
.countdown-digit {
    background: white;
    border: 2px solid #e74c3c;
    color: #e74c3c;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 1.5rem;
    font-weight: 800;
    min-width: 50px;
}

.price-large {
    color: #e74c3c;
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1;
    margin: 3px 0;
}

.price-highlight {
    color: #e74c3c;
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    margin: 10px 0;
}

/* Flexbox Utilities */
.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.flex-column {
    display: flex;
    flex-direction: column;
}

.gap-10 { gap: 10px; }
.gap-15 { gap: 15px; }
.gap-20 { gap: 20px; }

/* Border & Shadow Utilities */
.border-green { border: 2px solid #e8f5e9; }
.border-light { border: 1px solid #e5e5e5; }
.shadow-sm { box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.shadow-md { box-shadow: 0 5px 20px rgba(0,0,0,0.08); }
.shadow-lg { box-shadow: 0 10px 30px rgba(0,0,0,0.1); }

/* Border Radius */
.rounded-8 { border-radius: 8px; }
.rounded-10 { border-radius: 10px; }
.rounded-15 { border-radius: 15px; }
.rounded-full { border-radius: 50%; }

/* Width & Height Utilities */
.w-full { width: 100%; }
.h-full { height: 100%; }
.w-65 { width: 65px; }
.h-65 { height: 65px; }

/* Text Alignment */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* Animation Classes */
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.shimmer-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #4CAF50, #45a049, #4CAF50);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

/* ==========================================
   MOBILE RESPONSIVE STYLES
   ========================================== */

/* Technician Card Mobile Responsive */
.tech-card-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.tech-info-section {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    min-width: 0;
}

.tech-photo-container {
    position: relative;
    flex-shrink: 0;
}

.tech-status-indicator {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 16px;
    height: 16px;
    background: #4CAF50;
    border: 2px solid white;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.tech-details {
    flex: 1;
    min-width: 0;
}

.tech-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.tech-stats {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.tech-call-button {
    white-space: nowrap;
    flex-shrink: 0;
}

/* Mobile Responsive Media Queries */
@media (max-width: 768px) {
    .tech-card-wrapper {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .tech-info-section {
        width: 100%;
    }
    
    .tech-call-button {
        width: 100%;
        justify-content: center;
    }
    
    .tech-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .tech-stats {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .tech-stats > * {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .tech-info-section {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .tech-details {
        width: 100%;
    }
    
    .tech-header {
        align-items: center;
        text-align: center;
        width: 100%;
    }
    
    .tech-header h3 {
        font-size: 1.1rem;
        width: 100%;
    }
    
    .tech-stats {
        justify-content: center;
    }
    
    .badge-available {
        margin-top: 5px;
    }
}
