
/* ===============================
   PAGE LAYOUT
================================ */

.section_main {
    /* background: #f7f8fa; */
    padding: 50px 0px;
    background-color: #eee;
    background-image: url("https://www.transparenttextures.com/patterns/ag-square.png");
    /* This is mostly intended for prototyping; please download the pattern and re-host for production environments. Thank you! */
}

.upside__container {
    position: relative;
    /* 🔥 REQUIRED */
    margin-top: -200px;  
    z-index: 2;
    /* banner se upar */
}


.section_main main {
    background: #fff;
    border-radius: 5px;
    /* padding: 24px; */
    min-height: 400px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    border-top: 3px solid var(--site-color);
}

/* ===============================
   ASIDE BASE
================================ */

.aside {
    display: flex;
    flex-direction: column;
    gap: 20px;
}


/* =============================== */


.main__article h1 {
    text-transform: none;
    line-height: 45px;
    padding: 15px 30px;
    letter-spacing: .64px;
    font-weight: 600;
    font-style: normal;
    color: var(--site-color);
    font-size: 28px;
    opacity: 1;
    visibility: visible;
    -webkit-transition: opacity .24s ease-in-out;
    -o-transition: opacity .24s ease-in-out;
    transition: opacity .24s ease-in-out;
    margin-bottom: 30px;
    /* margin-top: 15px; */
    background: rgba(var(--site-color-rgb), .3);
}



/* ===============================
   CONTACT FORM
================================ */

.contact-page-form {
  padding: 20px 0px;
}

/* Field wrapper */
.single-input-field {
  position: relative;
}

/* Inputs */
.single-input-field input,
.single-input-field textarea {
  width: 100%;
  padding: 14px;
  color: #555;
  border-radius: 5px;
  border: 1px solid #ddd;
  font-size: 14px;
  outline: none;
  background: transparent;
  transition: .3s ease;
}

/* Textarea */
.textarea-field textarea {
  min-height: 140px;
  resize: none;
}

/* Floating Label */
.floating-field label {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: #888;
  pointer-events: none;
  background: #fff;
  padding: 0 6px;
  transition: .25s ease;
}

/* Textarea label fix */
.textarea-field label {
  top: -9px !important;
  transform: none;
}

/* Active state */
.floating-field input:focus + label,
.floating-field textarea:focus + label,
.floating-field input:not(:placeholder-shown) + label,
.floating-field textarea:not(:placeholder-shown) + label {
  top: 0px;
  font-size: 12px;
  color: var(--site-color);
}

/* Focus */
.single-input-field input:focus,
.single-input-field textarea:focus {
  border-color: var(--site-color);
  box-shadow: 0 0 0 3px rgba(var(--site-color-rgb), .15);
}

/* ===============================
   SERVICES CHECKBOX
================================ */

.form-services {
  margin-top: 5px;
}

.services-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #333;
}

.service-check {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-right: 18px;
  margin-bottom: 10px;
  cursor: pointer;
  font-size: 14px;
}

.service-check input {
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 5px;
  border: 2px solid #ccc;
  transition: .3s;
  position: relative;
}

.service-check input:checked {
  background: var(--site-color);
  border-color: var(--site-color);
}

.service-check input:checked::after {
  content: "✓";
  position: absolute;
  color: #fff;
  font-size: 12px;
  left: 3px;
  top: -1px;
}

/* ===============================
   BUTTON
================================ */

.single-input-fieldsbtn {
  margin-top: 10px;
  text-align: right;
}

.single-input-fieldsbtn button {
  background: var(--site-color);
  color: #fff;
  border: none;
  padding: 14px 38px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  transition: .35s ease;
}

.single-input-fieldsbtn button:hover {
  background: rgba(var(--site-color-rgb), .85);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(var(--site-color-rgb), .35);
}

/* Responsive */
@media (max-width: 767px) {
  .contact-page-form {
    padding: 28px 20px;
  }
}





/* ===============================
   CONTACT INFO SECTION
================================ */

.contact-info-item {
  background: #fff;
  border-radius: 5px;
  padding: 30px 22px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: all .35s ease;
  position: relative;
  overflow: hidden;
}

/* Accent line */
.contact-info-item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-left: 4px solid var(--site-color);
}

/* Hover */
.contact-info-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
  cursor: pointer;
}

/* Icon */
.contact-info-icon {
  min-width: 56px;
  height: 56px;
  background: rgba(var(--site-color-rgb), 0.15);
  color: var(--site-color);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: .3s;
}

/* Icon hover */
.contact-info-item:hover .contact-info-icon {
  background: var(--site-color);
  color: #fff;
  cursor: pointer;
}

/* Text */
.contact-info-text h2 {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: #222;
  letter-spacing: .06em;
}

.contact-info-text span {
  display: block;
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  letter-spacing: .5px;
}

/* Responsive */
@media (max-width: 767px) {
  .contact-info-item {
    padding: 24px 18px;
  }
  .contact-info-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}
