:root {
    --brand: #01b5fb;
    --sub: #6ac754;
    --body: #000408;
    --border: rgba(0,0,0,0.08);
    --shadow: 0px 6px 30px rgba(0, 0, 0, 0.08);
}

#contact-form{
    scroll-margin-top: 100px;
}



/* HERO */
.contact-hero {
    height: 280px;
      background: linear-gradient(rgba(0, 0, 0, 0.675), rgba(0, 0, 0, 0.692)), url("../img/image-5/about-path-bg.jpg") center/cover no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-hero .overlay {
    text-align: center;
    color: #0e0505;
    max-width: 800px;
    padding: 20px;
}

.contact-hero h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

/* WRAPPER */
.contact-wrapper {
    padding: 50px 15px;
}

.contact-container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 30px;
}

/* LEFT BOX */
.contact-info {
    background: linear-gradient(120deg, #010713, #070017);
    color: #fff;
    padding: 30px;
    padding-top: 120px;
    border-radius: 8px;
}

.contact-info h3 {
    margin-bottom: 10px;
}

.whatsapp-btn {
    display: inline-block;
    margin: 15px 0;
    background: #25d366;
    color: #fff;
    padding: 10px 15px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
}

.info-block {
    margin-top: 20px;
}

.info-block h4 {
    margin-bottom: 5px;
    color: #ffffff;
}
.info-block p {
    color: #d5d5d5;
}

.social-icons {
    margin-top: 25px;
}

.icons i {
    display: inline-block;
    width: 30px;
    height: 30px;
    background: #fff;
    color: #0a3d91;
    text-align: center;
    line-height: 30px;
    border-radius: 50%;
    margin-right: 6px;
    font-style: normal;
}

/* FORM */

/* RESPONSIVE */
@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-hero h1 {
        font-size: 28px;
    }
}
.map-section {
    width: 100%;
    margin-top: 50px;
}

.map-section iframe {
    width: 100%;
    height: 400px;
    border: 0;
    border-radius: 8px;
}


/*faq*/

.faq {
   background: 
    linear-gradient(rgba(0, 0, 0, 0.362), rgba(0, 0, 0, 0.356)),
    url('../img/image-5/faq-bg.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;

}

.faq .faq-list {
  padding: 0 100px;
}

@media (max-width:768px){ 
    .faq .faq-list{
        padding:20px 10px;
    }
}

.faq .faq-list ul {
  padding: 0;
  list-style: none;
}

.faq .faq-list li+li {
  margin-top: 15px;
}

.faq .faq-list li {
  padding: 20px;
  background: #f9fafa;
  border-radius: 4px;
  position: relative;
}

.faq .faq-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 24px;
  font-weight: 600;
  padding: 0 30px;
  outline: none;
  cursor: pointer;
}

.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: var(--brand);
}

.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .faq-list p {
  letter-spacing: 0.5px;
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a.collapsed {
  letter-spacing: 1px;
  font-size: 14px;
  color: #343a40;
}

.faq .faq-list a.collapsed:hover {
  color: var(--brand);
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
  color: var(--brand);
}





/* contact-form */
.contact-form-container {
            background: #ffffff;
            border-radius: 24px;
            padding: 30px 30px;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2), 
                        0 0 0 1px rgba(255, 107, 53, 0.1);
            max-width: 520px;
            width: 100%;
            animation: fadeInUp 0.8s ease-out;
            position: relative;
            z-index: 1;
            border:1px solid var(--brand);
            border-width:4px 0px 0px 0px;
            border-radius: 24px 24px 24px 24px;
        }


        @keyframes gradientShift {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px) scale(0.95);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .contact-form-heading {
            background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-size: 32px;
            margin-bottom: 35px;
            text-align: center;
            font-weight: 700;
            position: relative;
            padding-bottom: 20px;
        }

        .contact-form-heading::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #ff6b35, #f7931e);
            border-radius: 2px;
            box-shadow: 0 2px 10px rgba(255, 107, 53, 0.3);
        }

        form {
            display: flex;
            flex-direction: column;
            gap: 22px;
        }

        .contact-form-input-group {
            position: relative;
        }

        .contact-form-input, .contact-form-textarea {
            width: 100%;
            padding: 16px 20px;
            border: 2px solid #ffe5d9;
            border-radius: 14px;
            font-size: 16px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            background: #fff;
            font-family: inherit;
            color: #333;
        }

        .contact-form-input:focus, .contact-form-textarea:focus {
            outline: none;
            border-color: #ff6b35;
            background: #fff9f6;
            box-shadow: 0 0 0 5px rgba(255, 107, 53, 0.08),
                        0 8px 20px rgba(255, 107, 53, 0.1);
            transform: translateY(-2px);
        }

        .contact-form-input::placeholder, .contact-form-textarea::placeholder {
            color: #aaa;
            transition: all 0.3s ease;
        }

        .contact-form-input:focus::placeholder, .contact-form-textarea:focus::placeholder {
            opacity: 0.6;
            transform: translateX(5px);
        }

        .contact-form-textarea {
            resize: vertical;
            min-height: 130px;
        }

        .contact-form-button {
            background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
            color: white;
            border: none;
            padding: 18px 40px;
            border-radius: 14px;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-top: 15px;
            box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
            position: relative;
            overflow: hidden;
        }

        .contact-form-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s ease;
        }

        .contact-form-button:hover::before {
            left: 100%;
        }

        .contact-form-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
        }

        .contact-form-button:active {
            transform: translateY(-1px);
            box-shadow: 0 8px 25px rgba(255, 107, 53, 0.35);
        }

        @media (max-width: 600px) {
            .contact-form-container {
                padding: 40px 25px;
            }

            h3 {
                font-size: 26px;
                margin-bottom: 30px;
            }

            .contact-form-input, .contact-form-textarea, .contact-form-button {
                font-size: 15px;
                padding: 15px 18px;
            }

            .contact-form-button {
                padding: 16px 32px;
            }
        }

        @keyframes pulse {
            0%, 100% {
                box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.4);
            }
            50% {
                box-shadow: 0 0 0 15px rgba(255, 107, 53, 0);
            }
        }


        .contact-form-input-service select{
            color: #393939;
        }
        .form-option:hover{
            background-color: var(--brand) !important;
            color: #ffffff;
        }
       







/* Popup Overlay */
.contact-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* Popup Box */
.contact-popup-box {
  background: #ffffff00;
  width: 100%;
  max-width: 520px;
  padding: 10px;
  border-radius: 10px;
  position: relative;
  animation: popupFade 0.3s ease;
}

/* Close Button */
.contact-popup-close {
  position: absolute;
  top: 70px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  color: #333;
}

/* Animation */
@keyframes popupFade {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}






/* Form Box */
.quote-form-box {
  background: #ffffff;
  border-radius: 24px;
  padding: 20px;
  max-width: 520px;
  width: 100%;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
  border-top: 4px solid var(--brand);
  animation: quoteFadeUp 0.8s ease-out;
}

/* Title */
.quote-form-title {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 35px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.quote-form-title::after {
  content: '';
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #ff6b35, #f7931e);
  display: block;
  margin: 18px auto 0;
  border-radius: 2px;
}

/* Form */
.quote-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.quote-form-group {
  position: relative;
}

.quote-input,
.quote-textarea {
  width: 100%;
  padding: 16px 20px;
  border-radius: 14px;
  border: 2px solid #ffe5d9;
  font-size: 16px;
  transition: 0.3s ease;
}

.quote-input:focus,
.quote-textarea:focus {
  border-color: #ff6b35;
  background: #fff9f6;
  outline: none;
  box-shadow: 0 0 0 5px rgba(255, 107, 53, 0.08);
  transform: translateY(-2px);
}

.quote-textarea {
  min-height: 130px;
  resize: vertical;
}

/* Select */
.quote-select {
  color: #393939;
}

.quote-option:hover {
  background: var(--brand);
  color: #fff;
}

/* Button */
.quote-submit-btn {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: #fff;
  padding: 18px;
  border-radius: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  border: none;
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
  transition: 0.3s ease;
}

.quote-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

/* Popup Overlay */
.quote-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.quote-popup-wrapper {
  max-width: 520px;
  width: 100%;
  padding: 10px;
  position: relative;
  animation: quotePopupFade 0.3s ease;
}

/* Close */
.quote-popup-close {
  position: absolute;
  top: 25px;
  right: 35px;
  font-size: 26px;
  cursor: pointer;
  z-index: 9999;
}

@media (max-width: 600px) {
    .quote-popup-wrapper {
  max-width: 370px;
}


  .quote-form-box {
    padding: 40px 25px;
  }

  .quote-form-title {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .quote-input,
  .quote-textarea,
  .quote-submit-btn {
    font-size: 15px;
    padding: 10px 13px;
  }
  .quote-textarea {
    min-height: 70px;
    }
  .quote-submit-btn {
    padding: 16px 32px;
  }
}

.quote-scroll-select {
  height: auto;
  overflow-y: auto;
}






/* Animations */
@keyframes quoteFadeUp {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes quotePopupFade {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}