/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f5f6f7 100%);
    padding: 0;
}

.hero-content {
    padding: 1.5rem 2rem 2rem 2rem;
    text-align: center;
    margin-top: -5px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f5f6f7 100%);
}

/* Desktop Layout */
@media (min-width: 992px) {
    .hero-section .row {
        align-items: center;
        min-height: 100vh;
    }
    
    .hero-image {
        order: 2;
        max-height: 60vh;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-image img {
        height: 60vh;
        width: auto;
        object-fit: cover;
        max-width: 100%;
    }
    
    .hero-content {
        order: 1;
        margin-top: 0;
        padding: 2rem 3rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .hero-section .row {
        flex-direction: row;
    }
    
    .hero-section .col-12 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

.hero-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #2d3e50;
    margin-bottom: 1rem;
    margin-top: 0;
    padding-top: 0;
    white-space: nowrap;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #2B5CB8;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
    text-shadow: 0 1px 2px rgba(43, 92, 184, 0.1);
    white-space: nowrap;
}

/* Hero Features */
.hero-features {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem auto;
    flex-wrap: nowrap;
    white-space: nowrap;
    max-width: 100%;
    padding: 0 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #2B5CB8;
    white-space: nowrap;
    flex: 1;
    justify-content: center;
    max-width: 33.333%;
}

.feature-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.hero-text {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Google Rating Card */
.rating-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin: 1.5rem auto;
    max-width: 400px;
    border: 1px solid #e9ecef;
}

.rating-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.google-logo {
    width: 24px;
    height: 24px;
    margin-right: 12px;
}

.rating-content {
    flex: 1;
}

.rating-stars {
    display: flex;
    align-items: center;
    margin-bottom: 0.25rem;
}

.stars {
    color: #ffc107;
    font-size: 1.1rem;
    margin-right: 8px;
    letter-spacing: 2px;
}

.rating-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d3e50;
}

.rating-reviews {
    font-size: 0.9rem;
    color: #6c757d;
}

.rating-testimonial {
    border-top: 1px solid #e9ecef;
    padding-top: 1rem;
}

.rating-testimonial p {
    font-size: 0.95rem;
    color: #4a5568;
    font-style: italic;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.testimonial-author {
    font-size: 0.85rem;
    color: #6c757d;
    font-weight: 500;
}

.cta-button {
    background: linear-gradient(135deg, #2B5CB8 0%, #1e4a8a 100%);
    border: none;
    color: white;
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(43, 92, 184, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    text-decoration: none;
}

.cta-button:hover {
    background: linear-gradient(135deg, #1e4a8a 0%, #2B5CB8 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(43, 92, 184, 0.4);
    color: white;
    text-decoration: none;
}

.phone-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

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

.call-text {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.phone-number {
    font-size: 0.95rem;
    font-weight: 500;
    opacity: 0.9;
}

.hero-image {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f5f6f7 100%);
    padding: 0;
    text-align: center;
    margin-bottom: 0;
}

.hero-image img {
    border: none;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    opacity: 1;
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Emergency Section */
.emergency-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f5f6f7 100%);
    padding: 4rem 0;
}

.emergency-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #2d3e50;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
    line-height: 1.2;
}

.emergency-subtitle {
    font-size: 1.2rem;
    color: #2B5CB8;
    font-weight: 600;
    margin-bottom: 2rem;
    line-height: 1.4;
}

.emergency-problems {
    margin-bottom: 2rem;
}

.problem-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255,255,255,0.8);
    border-radius: 8px;
    border-left: 4px solid #2B5CB8;
}

.problem-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.problem-text {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.problem-text strong {
    font-size: 1.1rem;
    color: #2d3e50;
    font-weight: 600;
}

.problem-text span {
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.3;
}

.response-time {
    background: linear-gradient(135deg, #2B5CB8 0%, #1e4a8a 100%);
    color: white;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.lightning-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.emergency-cta {
    width: 100%;
    margin-top: 1rem;
}

.emergency-image img {
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* Trust Section */
.trust-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f5f6f7 100%);
    padding: 4rem 0;
}

.trust-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #2d3e50;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
    line-height: 1.2;
}

.trust-subtitle {
    font-size: 1.2rem;
    color: #2B5CB8;
    font-weight: 600;
    margin-bottom: 2rem;
    line-height: 1.4;
}

.trust-stats {
    margin-bottom: 2rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255,255,255,0.9);
    border-radius: 8px;
    border-left: 4px solid #2B5CB8;
}

.stat-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.stat-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.stat-text strong {
    font-size: 1.4rem;
    color: #2d3e50;
    font-weight: 700;
}

.stat-text span {
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.3;
}

.testimonials {
    margin-bottom: 2rem;
}

.testimonial-item {
    background: white;
    padding: 1.2rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-left: 4px solid #ffc107;
}

.testimonial-stars {
    color: #ffc107;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.testimonial-item p {
    font-size: 0.95rem;
    color: #4a5568;
    font-style: italic;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.testimonial-author {
    font-size: 0.85rem;
    color: #6c757d;
    font-weight: 500;
}

.guarantee-badge {
    background: linear-gradient(135deg, #2B5CB8 0%, #1e4a8a 100%);
    color: white;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    font-size: 1.1rem;
}

.shield-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.trust-image img {
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* Services Section */
.services-section {
    background: #ffffff;
    padding: 4rem 0;
}

.services-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #2d3e50;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.services-subtitle {
    font-size: 1.2rem;
    color: #2B5CB8;
    font-weight: 600;
    margin-bottom: 3rem;
    line-height: 1.4;
}

.service-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(43, 92, 184, 0.15);
    border-color: #2B5CB8;
}

.service-image {
    width: 100%;
    height: 200px;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.service-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-photo {
    transform: scale(1.05);
}

.service-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2d3e50;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.service-description {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex-grow: 1;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    font-size: 0.95rem;
    color: #4a5568;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2B5CB8;
    font-weight: bold;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f5f6f7 100%);
    padding: 4rem 0;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #2d3e50;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.contact-subtitle {
    font-size: 1.2rem;
    color: #2B5CB8;
    font-weight: 600;
    margin-bottom: 3rem;
    line-height: 1.4;
}

.contact-form-wrapper {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #e9ecef;
}

.form-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2d3e50;
    margin-bottom: 1.5rem;
}

.form-label {
    font-weight: 600;
    color: #2d3e50;
    margin-bottom: 0.5rem;
}

.form-control {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 0.8rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: #2B5CB8;
    box-shadow: 0 0 0 0.2rem rgba(43, 92, 184, 0.25);
}

.submit-btn {
    background: linear-gradient(135deg, #2B5CB8 0%, #1e4a8a 100%);
    border: none;
    color: white;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #1e4a8a 0%, #2B5CB8 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(43, 92, 184, 0.4);
}

.submit-icon {
    width: 20px;
    height: 20px;
}

.form-guarantees {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e9ecef;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    color: #6c757d;
}

.guarantee-item svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.contact-alternatives {
    padding-left: 2rem;
}

.alternatives-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2d3e50;
    margin-bottom: 2rem;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.contact-option:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.phone-contact {
    background: #2B5CB8;
}

.whatsapp-contact {
    background: #25D366;
}

.email-contact {
    background: #6c757d;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

.contact-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2d3e50;
    margin-bottom: 0.3rem;
}

.contact-info p {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 0.5rem;
}

.contact-link {
    color: #2B5CB8;
    text-decoration: none;
    font-weight: 600;
}

.contact-link:hover {
    color: #1e4a8a;
    text-decoration: underline;
}

.working-hours {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.working-hours h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2d3e50;
    margin-bottom: 1rem;
}

.working-hours ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.working-hours li {
    padding: 0.3rem 0;
    color: #6c757d;
    font-size: 0.95rem;
}

.working-hours .emergency {
    color: #2B5CB8;
    font-weight: 600;
    border-top: 1px solid #e9ecef;
    padding-top: 0.8rem;
    margin-top: 0.5rem;
}

/* Footer Section */
.footer-section {
    background: #2d3e50;
    color: #ffffff;
    padding: 3rem 0 1rem 0;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer-text {
    font-size: 0.95rem;
    color: #bdc3c7;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-certifications {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.cert-badge {
    background: #2B5CB8;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
    color: #bdc3c7;
    font-size: 0.95rem;
}

.footer-link {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #ffffff;
}

.footer-divider {
    border-color: #34495e;
    margin: 2rem 0 1.5rem 0;
}

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

.copyright {
    font-size: 0.9rem;
    color: #95a5a6;
    margin: 0;
}

.footer-badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.quality-badge {
    background: #34495e;
    color: #bdc3c7;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .hero-title {
        font-size: 1.8rem;
        white-space: nowrap;
        overflow: hidden;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        white-space: nowrap;
        overflow: hidden;
        letter-spacing: -0.3px;
    }
    
    .hero-content {
        padding: 1rem 1.5rem 2rem 1.5rem;
        text-align: center;
        margin-top: -5px;
        background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f5f6f7 100%);
    }
    
    .hero-features {
        gap: 0.3rem;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap;
        padding: 0 0.25rem;
    }
    
    .feature-item {
        font-size: 0.75rem;
        gap: 0.25rem;
        flex: 1;
        justify-content: center;
        max-width: none;
        white-space: nowrap;
        overflow: hidden;
    }
    
    .feature-icon {
        width: 14px;
        height: 14px;
        flex-shrink: 0;
        min-width: 14px;
    }
    
    .cta-button {
        padding: 1rem 1.5rem;
        gap: 0.6rem;
    }
    
    .call-text {
        font-size: 1rem;
    }
    
    .phone-number {
        font-size: 0.85rem;
    }
    
    .phone-icon {
        width: 20px;
        height: 20px;
    }
    
    .rating-card {
        max-width: 320px;
        padding: 1rem;
        margin: 1rem auto;
    }
    
    .rating-header {
        margin-bottom: 0.8rem;
    }
    
    .stars {
        font-size: 1rem;
        letter-spacing: 1px;
    }
    
    .rating-testimonial p {
        font-size: 0.9rem;
    }
    
    .emergency-section {
        padding: 2rem 0;
    }
    
    .emergency-title {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-top: 1rem;
    }
    
    .emergency-subtitle {
        font-size: 1rem;
    }
    
    .problem-item {
        padding: 0.8rem;
        margin-bottom: 1rem;
    }
    
    .problem-text strong {
        font-size: 1rem;
    }
    
    .response-time {
        font-size: 0.9rem;
        padding: 0.8rem;
        white-space: nowrap;
        overflow: hidden;
    }
    
    .trust-section {
        padding: 2rem 0;
    }
    
    .trust-title {
        font-size: 1.8rem;
        margin-top: 1rem;
    }
    
    .trust-subtitle {
        font-size: 1rem;
    }
    
    .stat-item {
        padding: 0.8rem;
        margin-bottom: 1rem;
    }
    
    .stat-text strong {
        font-size: 1.2rem;
    }
    
    .testimonial-item {
        padding: 1rem;
    }
    
    .guarantee-badge {
        font-size: 1rem;
        padding: 0.8rem;
    }
    
    .services-section {
        padding: 2rem 0;
    }
    
    .services-title {
        font-size: 1.8rem;
    }
    
    .services-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .service-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }
    
    .service-icon svg {
        width: 25px;
        height: 25px;
    }
    
    .service-title {
        font-size: 1.2rem;
    }
    
    .service-description {
        font-size: 0.95rem;
    }
    
    .contact-section {
        padding: 2rem 0;
    }
    
    .contact-title {
        font-size: 1.8rem;
    }
    
    .contact-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .contact-alternatives {
        padding-left: 0;
    }
    
    .contact-option {
        padding: 0.8rem;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
    }
    
    .contact-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .form-title, .alternatives-title {
        font-size: 1.2rem;
    }
    
    .footer-section {
        padding: 2rem 0 1rem 0;
    }
    
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-certifications, .footer-badges {
        justify-content: center;
    }
    
    .hero-image {
        margin-bottom: 0;
        padding-bottom: 0;
    }
    
    .hero-image img {
        margin-bottom: 0;
        display: block;
    }
}