* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background: #ffffff;
}

header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #e5e7eb;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    height: 70px;
}
.logo-image {
    transition: filter 0.3s ease;
}

.logo-image.scrolled {
    filter: grayscale(100%);
}
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: #3b82f6;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 18px;
    margin-right: 10px;
}

.logo-text {
    font-size: 22px;
    font-weight: 700;
    color: #1f2937;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 8px;
}

.nav-links a {
    color: #6b7280;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: #3b82f6;
    background: #f1f5f9;
}

.nav-links a.active {
    color: #3b82f6;
    background: #f1f5f9;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
    color: #374151;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 0;
    background: white;
    border-top: 1px solid #e5e7eb;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

.mobile-nav .nav-link {
    padding: 16px 20px;
    border-bottom: 1px solid #f3f4f6;
    font-weight: 500;
    color: #6b7280;
    text-decoration: none;
}

.mobile-nav .nav-link:hover,
.mobile-nav .nav-link.active {
    background: #f8fafc;
    color: #3b82f6;
}

.contact-hero {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    padding: 120px 0 80px 0;
    margin-top: 70px;
    position: relative;
    overflow: hidden;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

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

.trust-badge {
    background: linear-gradient(135deg, #ecfdf5, #f0f9ff);
    border: 1px solid #a7f3d0;
    color: #047857;
    padding: 10px 20px;
    border-radius: 25px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.1);
}

.trust-dot {
    width: 10px;
    height: 10px;
    background: #10b981;
    border-radius: 50%;
    animation: glow 1.5s ease-in-out infinite alternate;
}

@keyframes glow {
    from { box-shadow: 0 0 5px #10b981; }
    to { box-shadow: 0 0 15px #10b981; }
}

.contact-header h1 {
    font-size: 3.5rem;
    font-weight: 900;
    color: #1f2937;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.contact-highlight {
    color: #3b82f6;
}

.contact-header p {
    font-size: 1.3rem;
    color: #374151;
    margin-bottom: 0;
    font-weight: 500;
    max-width: 600px;
    margin: 0 auto;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-form-section {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.form-header {
    margin-bottom: 32px;
}

.form-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 8px;
}

.form-subtitle {
    color: #6b7280;
    font-size: 0.95rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-label {
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.form-input,
.form-textarea,
.form-select {
    padding: 16px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #ffffff;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.urgency-message {
    background: rgba(239, 68, 68, 0.05);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 20px;
}

.urgency-text {
    color: #dc2626;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.submit-btn {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    padding: 18px 32px;
    border-radius: 12px;
    border: none;
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.form-disclaimer {
    font-size: 0.8rem;
    color: #6b7280;
    text-align: center;
    margin-top: 16px;
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.urgent-contact {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    border-radius: 16px;
    padding: 32px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.urgent-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    pointer-events: none;
}

.urgent-title {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.urgent-subtitle {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.urgent-phone {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.urgent-phone:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.contact-methods {
    display: grid;
    gap: 24px;
}

.contact-method {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 28px;
    transition: all 0.3s ease;
}

.contact-method:hover {
    border-color: #3b82f6;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.1);
    transform: translateY(-4px);
}

.method-icon {
    width: 56px;
    height: 56px;
    background: #3b82f6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 16px;
}

.method-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}

.method-info {
    color: #6b7280;
    margin-bottom: 16px;
    line-height: 1.5;
}

.method-action {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.method-action:hover {
    color: #2563eb;
    gap: 10px;
}

.response-time {
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
}

.response-title {
    font-weight: 700;
    color: #0369a1;
    margin-bottom: 8px;
}

.response-text {
    color: #0c4a6e;
    font-size: 0.9rem;
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    font-size: 24px;
}

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

.scroll-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    background: #3b82f6;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    z-index: 1000;
    border: none;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    font-size: 18px;
    font-weight: bold;
}

.scroll-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-top:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.5);
}

footer {
    background: #1f2937;
    color: white;
    padding: 60px 20px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.footer-section p {
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 16px;
    font-size: 0.9rem;
}

.footer-contact {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: #d1d5db;
    font-size: 0.9rem;
}

.footer-services {
    list-style: none;
}

.footer-services li {
    margin-bottom: 10px;
}

.footer-services a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-services a:hover {
    color: #10b981;
}

.emergency-section {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 8px;
    padding: 16px;
    margin-top: 20px;
}

.emergency-title {
    color: #f87171;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.emergency-number {
    color: white;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid #374151;
    padding-top: 20px;
    text-align: center;
    color: #9ca3af;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .contact-hero {
        padding: 100px 0 60px 0;
    }

    .contact-header h1 {
        font-size: 2.6rem;
    }

    .contact-header p {
        font-size: 1.15rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form-section,
    .contact-method {
        padding: 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .urgent-contact {
        padding: 24px;
    }

    .urgent-phone {
        padding: 14px 24px;
        font-size: 1.1rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 22px;
    }

    .scroll-top {
        bottom: 85px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        padding: 90px 0 50px 0;
    }

    .contact-header h1 {
        font-size: 2.2rem;
    }

    .contact-header p {
        font-size: 1.1rem;
    }

    .contact-form-section {
        padding: 20px;
    }

    .urgent-contact {
        padding: 20px;
    }

    .urgent-title {
        font-size: 1.1rem;
    }

    .contact-method {
        padding: 20px;
    }

    .method-icon {
        width: 48px;
        height: 48px;
        font-size: 1.3rem;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 20px;
        bottom: 15px;
        right: 15px;
    }

    .scroll-top {
        width: 42px;
        height: 42px;
        font-size: 14px;
        bottom: 75px;
        right: 15px;
    }
}