.elementor-189 .elementor-element.elementor-element-75711de{--display:flex;}.elementor-189 .elementor-element.elementor-element-269cb51{--display:flex;}.elementor-189 .elementor-element.elementor-element-531c90d{--display:flex;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-a117c8d *//* ===== CONTACT HERO ===== */
.contact-hero {
  position: relative;
  width: 100%;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: 
    linear-gradient(135deg, rgba(0,0,0,.55), rgba(0,0,0,.55)),
    url('https://images.unsplash.com/photo-1607860108855-64acf2078ed9') center/cover no-repeat;
  overflow: hidden;
  font-family: system-ui, sans-serif;
}

/* OVERLAY ANIMATION */
.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255,140,0,.25), transparent 60%);
  animation: glowMove 6s infinite alternate ease-in-out;
}

/* CONTENT */
.contact-hero-content {
  position: relative;
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
  color: #fff;
  animation: fadeUp 1s ease forwards;
}

/* BADGE */
.contact-badge {
  display: inline-block;
  padding: 8px 22px;
  background: rgba(255,140,0,.15);
  border: 1px solid rgba(255,140,0,.4);
  color: #ff9f2d;
  border-radius: 30px;
  font-size: 14px;
  margin-bottom: 20px;
  letter-spacing: .5px;
}

/* HEADING */
.contact-hero-content h1 {
  font-size: 56px;
  font-weight: 800;
  margin-bottom: 18px;
}

.contact-hero-content h1 span {
  color: #ff8c00;
}

/* TEXT */
.contact-hero-content p {
  font-size: 18px;
  line-height: 1.7;
  color: #f1f1f1;
  margin-bottom: 35px;
}

/* BUTTONS */
.contact-hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  padding: 15px 36px;
  background: linear-gradient(135deg, #ff8c00, #ffb347);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  transition: .35s;
  box-shadow: 0 10px 30px rgba(255,140,0,.45);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 45px rgba(255,140,0,.65);
}

.btn-outline {
  padding: 15px 36px;
  border: 2px solid #ff8c00;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  border-radius: 50px;
  transition: .35s;
}

.btn-outline:hover {
  background: #ff8c00;
  color: #000;
}

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity:0; transform:translateY(40px); }
  to { opacity:1; transform:none; }
}

@keyframes glowMove {
  from { transform: translateX(0); }
  to { transform: translateX(-40px); }
}

/* RESPONSIVE */
@media(max-width:768px){
  .contact-hero-content h1 {
    font-size: 40px;
  }
  .contact-hero-content p {
    font-size: 16px;
  }
}

@media(max-width:480px){
  .contact-hero {
    min-height: 70vh;
  }
  .contact-hero-content h1 {
    font-size: 32px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-273590f *//* ===== CONTACT INFO SECTION ===== */
.contact-info-section {
  padding: 90px 8%;
  background: #fff;
  font-family: system-ui, sans-serif;
}

/* GRID */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 40px;
}

/* CARD */
.contact-info-card {
  background: #ffffff;
  padding: 45px 35px;
  text-align: center;
  border-radius: 18px;
  box-shadow: 0 15px 45px rgba(0,0,0,.08);
  transition: .4s ease;
  position: relative;
  overflow: hidden;
}

/* ORANGE BORDER ANIMATION */
.contact-info-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  border: 2px solid transparent;
  background: linear-gradient(135deg,#ff8c00,#ffb347) border-box;
  -webkit-mask:
    linear-gradient(#fff 0 0) padding-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: .4s;
}

.contact-info-card:hover::before {
  opacity: 1;
}

/* HOVER LIFT */
.contact-info-card:hover {
  transform: translateY(-12px);
}

/* ICON */
.contact-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg,#ff8c00,#ffb347);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(255,140,0,.45);
}

.contact-icon svg {
  width: 36px;
  height: 36px;
  fill: #fff;
}

/* TEXT */
.contact-info-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.contact-info-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
}

.contact-info-card a {
  color: #ff8c00;
  font-weight: 600;
  text-decoration: none;
}

/* RESPONSIVE */
@media(max-width:900px){
  .contact-info-grid {
    grid-template-columns: 1fr;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-e7bc935 *//* ===== CONTACT FORM SECTION ===== */
.contact-form-section {
  padding: 100px 8%;
  background: linear-gradient(180deg,#f7f7f7,#ffffff);
  font-family: system-ui, sans-serif;
}

/* WRAPPER */
.contact-form-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

/* LEFT CONTENT */
.contact-form-text .form-tag {
  display: inline-block;
  background: rgba(255,140,0,.12);
  color: #ff8c00;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 18px;
}

.contact-form-text h2 {
  font-size: 42px;
  margin-bottom: 18px;
  line-height: 1.2;
}

.contact-form-text h2 span {
  color: #ff8c00;
}

.contact-form-text p {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  max-width: 420px;
}

/* FORM BOX */
.contact-form-box {
  background: #ffffff;
  padding: 45px;
  border-radius: 22px;
  box-shadow: 0 18px 55px rgba(0,0,0,.1);
  position: relative;
  overflow: hidden;
}

/* ORANGE GLOW BORDER */
.contact-form-box::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  border: 2px solid transparent;
  background: linear-gradient(135deg,#ff8c00,#ffb347) border-box;
  -webkit-mask:
    linear-gradient(#fff 0 0) padding-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: .7;
}

/* ===== WPFORMS STYLING ===== */
.contact-form-box .wpforms-field input,
.contact-form-box .wpforms-field textarea,
.contact-form-box .wpforms-field select {
  border-radius: 10px;
  border: 1px solid #ddd;
  padding: 14px 15px;
  font-size: 14px;
}

.contact-form-box .wpforms-field input:focus,
.contact-form-box .wpforms-field textarea:focus {
  border-color: #ff8c00;
  box-shadow: 0 0 0 2px rgba(255,140,0,.15);
}

/* SUBMIT BUTTON */
.contact-form-box .wpforms-submit {
  background: linear-gradient(135deg,#ff8c00,#ffb347);
  border-radius: 30px;
  padding: 14px 36px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  transition: .4s ease;
}

.contact-form-box .wpforms-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(255,140,0,.4);
}

/* ===== RESPONSIVE ===== */
@media(max-width:900px){
  .contact-form-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-form-text h2 {
    font-size: 34px;
  }

  .contact-form-text p {
    max-width: 100%;
  }
}/* End custom CSS */