.elementor-353 .elementor-element.elementor-element-a4e4ee8{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-519527d */.contact {
    --red: #dc2626;
    --red-dark: #b91c1c;
    --blue: #2563eb;
    --blue-dark: #1e40af;
    --muted: #4b5563;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, sans-serif;
    padding: 70px 20px;
    background: #fafafa;
    text-align: center;
}

.contact h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--red);
    margin-bottom: 10px;
}

.contact p.intro {
    color: var(--muted);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Info */
.contact .info {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: center;
    margin-bottom: 50px;
}

.contact .info div {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--muted);
}

.contact .info svg {
    width: 20px;
    height: 20px;
    stroke-width: 2.2;
    fill: none;
}

.contact .info .red svg { 
    stroke: var(--red); 
}

.contact .info .blue svg { 
    stroke: var(--blue); 
}

/* Cards */
.contact .cards {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact .card {
    background: #fff;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 6px 16px rgba(17, 24, 39, 0.08);
    transition: all 0.25s ease;
}

.contact .card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(17, 24, 39, 0.16);
}

.contact .card h3 {
    font-size: 18px;
    margin: 0 0 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.contact .card h3 svg {
    width: 22px;
    height: 22px;
    stroke-width: 2.2;
    fill: none;
}

.contact .card h3.red {
    color: var(--red);
}

.contact .card h3.blue {
    color: var(--blue);
}

.contact .card h3.red svg {
    stroke: var(--red);
}

.contact .card h3.blue svg {
    stroke: var(--blue);
}

.contact .card p {
    margin: 0 0 16px;
    font-size: 14px;
    color: var(--muted);
}

.contact .btn {
    display: inline-block;
    text-align: center;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.btn.red {
    background: var(--red);
    color: #fff;
}

.btn.red:hover {
    background: var(--red-dark);
}

.btn.blue {
    background: var(--blue);
    color: #fff;
}

.btn.blue:hover {
    background: var(--blue-dark);
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact {
        padding: 50px 15px;
    }
    
    .contact h2 {
        font-size: 24px;
    }
    
    .contact p.intro {
        font-size: 14px;
        padding: 0 10px;
    }
    
    .contact .cards {
        gap: 15px;
    }
    
    .contact .card {
        padding: 25px;
    }
    
    .contact .card h3 {
        font-size: 16px;
    }
    
    .contact .btn {
        padding: 10px 25px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .contact {
        padding: 40px 10px;
    }
    
    .contact h2 {
        font-size: 22px;
    }
    
    .contact p.intro {
        font-size: 13px;
        margin-bottom: 30px;
    }
    
    .contact .info {
        gap: 15px;
        margin-bottom: 40px;
    }
    
    .contact .info div {
        font-size: 14px;
    }
    
    .contact .info svg {
        width: 18px;
        height: 18px;
    }
    
    .contact .card {
        padding: 20px;
    }
    
    .contact .card h3 {
        font-size: 15px;
    }
    
    .contact .card h3 svg {
        width: 20px;
        height: 20px;
    }
    
    .contact .card p {
        font-size: 13px;
        margin-bottom: 14px;
    }
    
    .contact .btn {
        padding: 9px 20px;
        font-size: 13px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-ef33070 */.contact-form {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, sans-serif;
  padding: 60px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.contact-form h2 {
  color: #dc2626;
  font-size: 28px;
  margin-bottom: 8px;
  font-weight: 700;
}

.contact-form p {
  color: #4b5563;
  margin-bottom: 30px;
  font-size: 16px;
}

.contact-form label {
  display: block;
  font-weight: 600;
  margin: 15px 0 6px;
  color: #1e3a8a; /* deep blue */
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #d1d5db;
  border-radius: 10px;
  font-size: 15px;
  color: #111827;
  transition: border 0.3s, box-shadow 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #2563eb; /* bright blue */
  box-shadow: 0 0 8px rgba(37, 99, 235, 0.3);
  outline: none;
}

.contact-form textarea {
  min-height: 120px;
}

.contact-form button {
  display: block;
  width: 100%;
  background: #2563eb; /* bright blue */
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  padding: 16px;
  border: none;
  border-radius: 12px;
  margin-top: 25px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.3s, background 0.3s;
}

.contact-form button:hover {
  background: #1e40af; /* deeper blue */
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}

.emergency {
  margin-top: 60px;
  padding: 30px;
  background: #fef2f2;
  border: 2px solid #fecaca;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.emergency h3 {
  color: #dc2626;
  font-size: 22px;
  margin-bottom: 12px;
  font-weight: 700;
}

.emergency p {
  color: #374151;
  margin-bottom: 18px;
}

.emergency a {
  display: inline-block;
  background: #dc2626; /* deep red */
  color: #fff;
  padding: 14px 30px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.3s, background 0.3s;
}

.emergency a:hover {
  background: #991b1b; /* darker red */
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}/* End custom CSS */