.elementor-10 .elementor-element.elementor-element-68b78a4{--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;}/* Start custom CSS for html, class: .elementor-element-195ea95 *//* GLOBAL */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #f9f6f1;
}

/* SECTION ANIMATION */
.contact-section {
  padding: 90px 10%;
  animation: fadeUp 1s ease;
}

/* HEADER */
.contact-header {
  text-align: center;
  margin-bottom: 60px;
  animation: fadeDown 1s ease;
}

.contact-header h2 {
  font-size: 38px;
  color: #111;
}

.contact-header p {
  color: #666;
}

/* GRID */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* LEFT CARD */
.contact-card {
  background: #fff;
  padding: 35px;
  border-radius: 18px;
  box-shadow: 0 15px 50px rgba(0,0,0,0.08);
  transition: 0.4s;
  animation: slideLeft 1s ease;
}

.contact-card:hover {
  transform: translateY(-10px) scale(1.02);
}

/* INFO ITEMS */
.info-item {
  margin-bottom: 20px;
  transition: 0.3s;
}

.info-item:hover {
  transform: translateX(8px);
}

.info-item span {
  display: block;
  font-size: 13px;
  color: #C9A24A;
  font-weight: 600;
}

.info-item p {
  margin: 5px 0 0;
  color: #222;
}

/* FORM */
.contact-form {
  background: #111;
  padding: 40px;
  border-radius: 18px;
  color: #fff;
  position: relative;
  overflow: hidden;
  animation: slideRight 1s ease;
}

/* GLOW EFFECT */
.contact-form::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  background: linear-gradient(120deg, transparent, #C9A24A, transparent);
  top: -50%;
  left: -50%;
  animation: rotateGlow 6s linear infinite;
  opacity: 0.1;
}

/* INPUT */
.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 8px;
  background: #1c1c1c;
  color: #fff;
  transition: 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  background: #222;
  box-shadow: 0 0 10px rgba(201,162,74,0.3);
}

/* BUTTON */
button {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #C9A24A, #a8832f);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(201,162,74,0.4);
}

/* MAP */
.map iframe {
  border-radius: 20px;
  margin-top: 50px;
  transition: 0.4s;
}

.map iframe:hover {
  transform: scale(1.02);
}

/* WHATSAPP */
.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  padding: 14px 18px;
  border-radius: 50px;
  color: #fff;
  font-weight: 600;
  transition: 0.3s;
}

.whatsapp:hover {
  transform: scale(1.1) rotate(3deg);
}

/* POPUP */
.popup {
  position: fixed;
  top: 20px;
  right: -300px;
  background: #111;
  color: #fff;
  padding: 15px 20px;
  border-left: 4px solid #C9A24A;
  border-radius: 8px;
  transition: 0.5s;
}

.popup.show {
  right: 20px;
}

/* ANIMATIONS */
@keyframes fadeUp {
  from {opacity: 0; transform: translateY(40px);}
  to {opacity: 1; transform: translateY(0);}
}

@keyframes fadeDown {
  from {opacity: 0; transform: translateY(-40px);}
  to {opacity: 1; transform: translateY(0);}
}

@keyframes slideLeft {
  from {opacity: 0; transform: translateX(-60px);}
  to {opacity: 1; transform: translateX(0);}
}

@keyframes slideRight {
  from {opacity: 0; transform: translateX(60px);}
  to {opacity: 1; transform: translateX(0);}
}

@keyframes rotateGlow {
  0% {transform: rotate(0deg);}
  100% {transform: rotate(360deg);}
}

/* RESPONSIVE */
@media(max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}/* End custom CSS */