@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

:root {
  --primary: #c33233;
  --primary-light: #e25a5b;
  --secondary: #fff;
  --bg: #fff;
  --accent: #c33233;
  --card-bg: #fff;
  --radius: 20px;
  --shadow: 0 8px 32px 0 rgba(195, 50, 51, 0.13);
  --frost: rgba(255,255,255,0.80);
}

/* General Reset & Body */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Montserrat', Arial, sans-serif;
  background: var(--bg);
  color: var(--accent);
  min-height: 100vh;
  overflow-x: hidden;
}

/* Header & Navigation */
.header {
  width: 100%;
  padding: 18px 5%;
  background: #fff;
  border-bottom: 3px solid var(--primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow);
}

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

.logo img {
  height: 48px;
  margin-right: 18px;
}

.logo h1 {
  font-size: 1.6rem;
  letter-spacing: 1.5px;
  color: var(--primary);
  font-weight: 700;
}

.navbar a {
  color: var(--primary);
  text-decoration: none;
  font-size: 1.08rem;
  margin: 0 1.2rem;
  position: relative;
  padding: 6px 0;
  transition: color 0.2s;
}

.navbar a::before {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transform: scaleX(0);
  transition: transform 0.3s;
}

.navbar a:hover {
  color: var(--primary-light);
}

.navbar a:hover::before {
  transform: scaleX(1);
}

/* Contact Section */
.contact {
  padding: 64px 5% 32px 5%;
  background: #fff;
  position: relative;
}
.contact h2 {
  text-align: center;
  font-size: 2.1rem;
  color: var(--primary);
  margin-bottom: 24px;
}
.contact-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 36px;
}
.contact-content > div, .contact-form {
  flex: 1 1 300px;
  max-width: 430px;
  background: var(--card-bg);
  padding: 28px 24px 22px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 16px;
  border: 2px solid var(--primary);
}
.contact-content ul {
  margin-top: 14px;
  color: var(--primary);
  font-size: 1.01rem;
  list-style: none;
}
.contact-content li {
  margin-bottom: 7px;
}
.social-links {
  margin-top: 14px;
  display: flex;
  gap: 12px;
  justify-content: left;
}
.social-links img {
  width: 32px;
  transition: transform 0.16s;
}
.social-links img:hover { transform: scale(1.18); }
.contact-form input,
.contact-form textarea {
  width: 100%;
  background: #fff;
  border: 1.7px solid #c3323322;
  border-radius: 6px;
  margin-bottom: 12px;
  padding: 12px;
  font-size: 1.03rem;
  color: #c33233;
  resize: none;
  transition: border 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border: 1.7px solid var(--primary);
  outline: none;
}
.btn-send {
  background: linear-gradient(90deg,var(--primary),var(--primary-light));
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 0.8em 1.5em;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 6px;
  transition: background 0.23s, transform 0.18s;
}
.btn-send:hover {
  background: linear-gradient(90deg,var(--primary-light),var(--primary));
  transform: scale(1.06);
}
.map-embed {
  margin: 18px auto 0 auto;
  max-width: 700px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* Branches Section (features) */
.features {
  background: linear-gradient(90deg,#fff 70%, #c3323317 100%);
  padding: 52px 5% 36px 5%;
  text-align: center;
}
.section-title {
  text-align: center;
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 32px;
  letter-spacing: 1.2px;
  font-weight: 700;
}
.features-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
  margin-top: 18px;
}
.feature-card {
  background: var(--frost);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px 18px 18px 18px;
  width: 310px;
  min-width: 220px;
  text-align: left;
  border-top: 3px solid var(--primary);
  transition: box-shadow 0.19s, transform 0.16s;
  margin-bottom: 12px;
}
.feature-card:hover {
  box-shadow: 0 12px 36px 0 #c3323344;
  transform: translateY(-5px) scale(1.04);
}
.feature-card h3 {
  font-size: 1.13rem;
  color: var(--primary);
  margin-bottom: 9px;
  font-weight: 700;
}
.feature-card ul, .feature-card li {
  list-style: none;
  padding-left: 0;
  margin: 0 0 7px 0;
  font-size: 1rem;
  color: #a63c3c;
}
.feature-card li b {
  color: var(--primary);
}
.feature-card .map-embed {
  margin-top: 10px;
  max-width: 100%;
  border-radius: 10px;
  box-shadow: none;
}

/* Social Links Outside Contact Box */
.social-links-outside {
  display: flex;
  gap: 18px;
  justify-content: center;
  margin: 28px 0 0 0;
}

/* Footer */
.footer {
  background: var(--primary);
  padding: 26px 10% 18px 10%;
  text-align: center;
  color: #fff;
  font-size: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer a {
  color: #fff;
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.2s;
}
.footer a:hover {
  color: #c33233;
}

/* Responsive design */
@media (max-width: 1160px) {
  .contact, .features { padding-left: 2%; padding-right: 2%; }
}
@media (max-width: 940px) {
  .features-cards {
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }
  .feature-card {
    width: 96vw;
    max-width: 380px;
  }
  .footer {
    flex-direction: column;
    gap: 8px;
  }
}
@media (max-width: 700px) {
  .header {
    flex-direction: column;
    gap: 8px;
    padding: 16px 2%;
  }
  .logo h1 {
    font-size: 1.2rem;
  }
  .navbar a {
    margin: 0 0.7rem;
    font-size: 1rem;
  }
  .contact h2, .features .section-title {
    font-size: 1.5rem;
  }
  .contact-content, .features-cards {
    flex-direction: column;
    align-items: stretch;
  }
  .contact-content > div, .contact-form, .feature-card {
    width: 97vw;
    max-width: 350px;
    margin: 0 auto 14px auto;
    padding: 20px 8px 14px 8px;
  }
  .map-embed iframe {
    height: 120px !important;
  }
  .footer {
    flex-direction: column;
    gap: 8px;
  }
}