/** Shopify CDN: Minification failed

Line 123:29 Expected ")" to end URL token

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:contact-template-v2 (INDEX:6) */
/* Brand Fonts */
.custom-contact {
  font-family: Helvetica, Aileron, sans-serif;
}

/* ================= Banner ================= */
.contact-banner {
  background-size: cover;
  background-position: center;
  padding: 140px 0;
  text-align: center;
  position: relative;
}

/* Desktop */
.banner-content h1 {
  font-size: 52px;
  font-weight: 600;
  color: #233A1C;
}

.banner-content p {
  font-size: 18px;
  margin-top: 10px;
  color: #233A1C;
}

/* ================= Layout ================= */
.contact-wrapper {
  padding: 80px 0;
  background: #ffffff;
}

/* LEFT SIDE */
.map-header {
  margin-bottom: 30px;
}

.map-header h2 {
  font-size: 30px;
  color: #233A1C;
  margin-bottom: 10px;
}

.map-header p {
  color: #555;
}

.contact-map #map {
  width: 100%;
  height: 420px;
  border: none;
}

/* RIGHT SIDE */
.contact-form-box {
  background: #ffffff;
  padding: 50px;
  border-top: 6px solid #D6AB35;
}

.contact-form-box h2 {
  color: #233A1C;
  margin-bottom: 30px;
}

.contact-form-box input,
.contact-form-box textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.contact-form-box input:focus,
.contact-form-box textarea:focus {
  border-color: #D6AB35;
  outline: none;
}

.contact-form-box button {
  width: 100%;
  padding: 15px;
  background: #233A1C;
  color: #fff;
  border: none;
  transition: 0.3s;
}

.contact-form-box button:hover {
  background: #D6AB35;
  color: #233A1C;
}

.success-msg {
  color: #233A1C;
  margin-bottom: 15px;
}

/* ================= MOBILE FIX ================= */
@media (max-width: 768px) {

  .contact-banner {
    padding: 90px 20px;

    /* fallback if no mobile image */
    background-position: center 25%;
  }

  /* If mobile banner uploaded */
  .contact-banner.has-mobile {
    background-image: url({{ section.settings.mobile_banner | image_url }});
    background-position: center;
    padding: 110px 20px;
  }

  .banner-content h1 {
    font-size: 28px;
  }

  .banner-content p {
    font-size: 14px;
  }

  .contact-map #map {
    height: 300px;
    margin-bottom: 40px;
  }

  .contact-form-box {
    padding: 30px;
  }
}
.map-iframe {
  width: 100%;
  aspect-ratio: 1 / 1; /* 👈 perfect square */
  overflow: hidden;
}

.map-iframe iframe {
  width: 100%;
  height: 100%;
}
/* END_SECTION:contact-template-v2 */

/* START_SECTION:section-service-v1 (INDEX:49) */
/* ===== SERVICE ICON SECTION STYLING ===== */

/* Headline Color */
.section-service-v1 .title {
  color: #D6AB35 !important;
  transition: 0.3s ease;
}

/* Subheading Color + Smaller Size */
.section-service-v1 .content {
  color: #000000 !important;
  font-size: 8px;   /* Smaller text */
  line-height: 1.6;
}

/* Icon Animation */
.section-service-v1 .number img {
  transition: all 0.4s ease;
  border-radius: 50%;
}

/* Glow Effect on Hover */
.section-service-v1 .box-service:hover .number img {
  transform: translateY(-6px) scale(1.08);
  box-shadow: 0 0 20px rgba(214, 171, 53, 0.6);
}

/* Slight Card Lift */
.section-service-v1 .box-service {
  transition: all 0.4s ease;
}

.section-service-v1 .box-service:hover {
  transform: translateY(-4px);
}
/* END_SECTION:section-service-v1 */