/* ICON QUOTE PAGE CSS — extracted 2026-09-14 */

/* ICON GIFT — REQUEST QUOTE HERO
================================================== */

.ig-quote-hero {
  --ig-primary: #00563E;
  --ig-primary-dark: #004533;
  --ig-primary-light: #78B7A3;
  --ig-white: #FFFFFF;
  --ig-black: #111111;

  position: relative;
  width: 100%;
  height: 72dvh;
  min-height: 570px;
  max-height: 780px;
  overflow: hidden;
  color: var(--ig-white);
  background: #0B211A;
  font-family: "Tajawal", sans-serif;
  isolation: isolate;
}

.ig-quote-hero,
.ig-quote-hero * {
  box-sizing: border-box;
}

.ig-quote-hero h1,
.ig-quote-hero p,
.ig-quote-hero span,
.ig-quote-hero a {
  font-family: "Tajawal", sans-serif !important;
}


/* ==================================================
   IMAGE
================================================== */

.ig-quote-hero__image {
  position: absolute !important;
  inset: 0;
  z-index: 1;

  display: block !important;
  width: 100% !important;
  max-width: none !important;
  height: 100% !important;

  margin: 0 !important;

  object-fit: cover;
  object-position: center;

  transform: scale(1.035);

  animation: igQuoteHeroImage 9s ease-out forwards;
}


/* ==================================================
   OVERLAY
================================================== */

.ig-quote-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;

  background:

    linear-gradient(
      270deg,
      rgba(0, 48, 35, .94) 0%,
      rgba(0, 55, 40, .79) 30%,
      rgba(0, 31, 23, .43) 58%,
      rgba(0, 0, 0, .08) 100%
    ),

    linear-gradient(
      0deg,
      rgba(0, 20, 15, .62) 0%,
      rgba(0, 0, 0, 0) 55%
    );
}


/* ==================================================
   CONTAINER
================================================== */

.ig-quote-hero__inner {
  position: relative;
  z-index: 4;

  display: flex;
  align-items: flex-end;

  width: min(1440px, calc(100% - 76px));
  height: 100%;

  margin: 0 auto;
  padding-bottom: clamp(65px, 8vh, 95px);
}


/* ==================================================
   CONTENT
================================================== */

.ig-quote-hero__content {
  width: min(720px, 58vw);

  text-align: right;

  animation:
    igQuoteHeroContent .85s cubic-bezier(.2,.7,.2,1) both;
}


/* Breadcrumb */
.ig-quote-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;

  margin-bottom: 22px;

  color: rgba(255,255,255,.60);

  font-size: 12px;
  font-weight: 500;
}

.ig-quote-hero__breadcrumb a {
  color: rgba(255,255,255,.82) !important;
  text-decoration: none !important;

  transition: color .25s ease;
}

.ig-quote-hero__breadcrumb a:hover {
  color: var(--ig-primary-light) !important;
}


/* Eyebrow */
.ig-quote-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;

  margin-bottom: 15px;

  color: var(--ig-primary-light);

  font-size: 14px;
  font-weight: 700;
}

.ig-quote-hero__eyebrow::before {
  content: "";

  width: 36px;
  height: 2px;

  background: currentColor;
}


/* Heading */
.ig-quote-hero h1 {
  width: 100%;
  max-width: 700px;

  margin: 0 0 20px;

  color: var(--ig-white) !important;

  font-size: clamp(43px, 4.7vw, 72px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -1.3px;
}

.ig-quote-hero h1 span {
  display: block;

  margin-top: 5px;

  color: var(--ig-primary-light);
}


/* Description */
.ig-quote-hero__content > p {
  max-width: 640px;

  margin: 0 0 25px;

  color: rgba(255,255,255,.82) !important;

  font-size: clamp(15px, 1.3vw, 18px);
  font-weight: 400;
  line-height: 1.9;
}


/* ==================================================
   FEATURES
================================================== */

.ig-quote-hero__features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;

  margin-bottom: 30px;
}

.ig-quote-hero__features > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  color: rgba(255,255,255,.90);

  font-size: 13px;
  font-weight: 500;
}

.ig-quote-hero__features svg {
  width: 19px;
  height: 19px;

  padding: 3px;

  border-radius: 50%;

  fill: none;
  stroke: var(--ig-white);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;

  background: var(--ig-primary);
}


/* ==================================================
   BUTTON
================================================== */

.ig-quote-hero__button {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 13px;

  min-height: 54px;
  padding: 13px 25px;

  border: 1px solid var(--ig-primary) !important;
  border-radius: 0 !important;

  color: var(--ig-white) !important;
  background: var(--ig-primary) !important;

  box-shadow: none !important;

  text-decoration: none !important;

  font-size: 15px;
  font-weight: 800;

  transition:
    background .25s ease,
    border-color .25s ease,
    transform .25s ease;
}

.ig-quote-hero__button svg {
  width: 19px;
  height: 19px;

  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;

  transition: transform .25s ease;
}

.ig-quote-hero__button:hover {
  border-color: var(--ig-white) !important;

  color: var(--ig-primary-dark) !important;
  background: var(--ig-white) !important;

  transform: translateY(-3px);
}

.ig-quote-hero__button:hover svg {
  transform: translateY(4px);
}


/* ==================================================
   DECOR
================================================== */

.ig-quote-hero__decor {
  position: absolute;
  top: 45px;
  left: 45px;
  z-index: 5;

  display: flex;
  gap: 8px;

  opacity: .75;
}

.ig-quote-hero__decor span {
  width: 6px;
  height: 6px;

  border-radius: 50%;

  background: var(--ig-primary-light);

  animation: igQuoteDot 1.8s ease-in-out infinite;
}

.ig-quote-hero__decor span:nth-child(2) {
  animation-delay: .2s;
}

.ig-quote-hero__decor span:nth-child(3) {
  animation-delay: .4s;
}


/* Bottom Line */
.ig-quote-hero__line {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 6;

  width: 100%;
  height: 4px;

  background:
    linear-gradient(
      90deg,
      transparent,
      var(--ig-primary),
      var(--ig-primary-light),
      var(--ig-primary),
      transparent
    );

  background-size: 200% 100%;

  animation: igQuoteLine 5s linear infinite;
}


/* ==================================================
   ANIMATIONS
================================================== */

@keyframes igQuoteHeroImage {
  from {
    transform: scale(1.07);
  }

  to {
    transform: scale(1.035);
  }
}

@keyframes igQuoteHeroContent {
  from {
    opacity: 0;
    transform: translateY(35px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes igQuoteDot {
  0%,
  100% {
    opacity: .35;
    transform: scale(.8);
  }

  50% {
    opacity: 1;
    transform: scale(1.25);
  }
}

@keyframes igQuoteLine {
  from {
    background-position: 200% 0;
  }

  to {
    background-position: -200% 0;
  }
}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 1024px) {

  .ig-quote-hero {
    height: 68dvh;
    min-height: 570px;
  }

  .ig-quote-hero__inner {
    width: calc(100% - 50px);
  }

  .ig-quote-hero__content {
    width: min(680px, 75vw);
  }

}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 767px) {

  .ig-quote-hero {
    height: 72svh;
    min-height: 590px;
    max-height: 720px;
  }

  .ig-quote-hero__image {
    object-position: 48% center;
  }

  .ig-quote-hero__overlay {
    background:

      linear-gradient(
        0deg,
        rgba(0, 48, 35, .97) 0%,
        rgba(0, 54, 40, .82) 42%,
        rgba(0, 25, 18, .30) 76%,
        rgba(0,0,0,.05) 100%
      ) !important;
  }

  .ig-quote-hero__inner {
    align-items: flex-end;

    width: calc(100% - 36px);

    padding-bottom: 52px;
  }

  .ig-quote-hero__content {
    width: 100%;
  }

  .ig-quote-hero__breadcrumb {
    margin-bottom: 16px;
    font-size: 11px;
  }

  .ig-quote-hero__eyebrow {
    margin-bottom: 11px;
    font-size: 12px;
  }

  .ig-quote-hero h1 {
    margin-bottom: 15px;

    font-size: clamp(34px, 10vw, 45px);
    line-height: 1.16;
  }

  .ig-quote-hero__content > p {
    display: -webkit-box;

    margin-bottom: 20px;

    overflow: hidden;

    font-size: 14px;
    line-height: 1.75;

    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }

  .ig-quote-hero__features {
    gap: 8px 13px;
    margin-bottom: 23px;
  }

  .ig-quote-hero__features > span {
    font-size: 11px;
  }

  .ig-quote-hero__button {
    min-height: 49px;
    padding: 11px 20px;
    font-size: 13px;
  }

  .ig-quote-hero__decor {
    top: 25px;
    left: 20px;
  }

}


/* ==================================================
   REDUCED MOTION
================================================== */

@media (prefers-reduced-motion: reduce) {

  .ig-quote-hero__image,
  .ig-quote-hero__content,
  .ig-quote-hero__decor span,
  .ig-quote-hero__line {
    animation: none !important;
  }

}


/* ICON GIFT — REQUEST QUOTE SECTION
========================================================= */

#quote-form {
  --ig-primary: #00563E;
  --ig-primary-dark: #004533;
  --ig-primary-light: #78B7A3;
  --ig-soft: #F1F6F4;
  --ig-border: #DDE7E3;
  --ig-black: #111111;
  --ig-text: #535D59;
  --ig-white: #FFFFFF;

  width: 100%;
  padding: 90px 35px;
  gap: 28px;

  background:
    radial-gradient(
      circle at 92% 8%,
      rgba(0, 86, 62, .075),
      transparent 26%
    ),
    var(--ig-soft);

  font-family: "Tajawal", sans-serif !important;
}

#quote-form,
#quote-form * {
  box-sizing: border-box;
  font-family: "Tajawal", sans-serif !important;
}


/* =========================================================
   COLUMNS
========================================================= */

#form-cont,
#content-cont {
  min-width: 0;
}

#form-cont {
  flex: 1 1 65%;
  padding: 45px 42px;

  border: 1px solid var(--ig-border);

  background: var(--ig-white);

  box-shadow:
    0 16px 50px rgba(0, 58, 42, .07);
}

#content-cont {
  position: relative;

  flex: 0 1 37%;

  overflow: hidden;

  background:
    linear-gradient(
      145deg,
      #00694C 0%,
      #00563E 55%,
      #004533 100%
    );

  box-shadow:
    0 20px 55px rgba(0, 58, 42, .16);
}


/* =========================================================
   FORM HEADING
========================================================= */

#form-cont .elementor-heading-title {
  margin: 0 !important;

  color: var(--ig-black) !important;

  font-size: clamp(30px, 2.5vw, 42px) !important;
  font-weight: 700 !important;
  line-height: 1.25 !important;
}

#form-cont .elementor-widget-text-editor {
  color: var(--ig-text) !important;

  font-size: 14px;
  line-height: 1.8;
}

#form-cont .elementor-widget-text-editor p {
  margin-bottom: 22px;
}


/* =========================================================
   ELEMENTOR FORM
========================================================= */

#form-widg {
  width: 100%;
}

#form-widg .elementor-form {
  width: 100%;
}


/* المسافات */
#form-widg .elementor-form-fields-wrapper {
  margin-left: -6px !important;
  margin-right: -6px !important;
}

#form-widg .elementor-field-group {
  padding-left: 6px !important;
  padding-right: 6px !important;
  margin-bottom: 18px !important;
}


/* Labels */
#form-widg .elementor-field-label {
  margin-bottom: 7px !important;

  color: #26312D !important;

  font-size: 13px !important;
  font-weight: 600 !important;
  line-height: 1.5;
}


/* Inputs */
#form-widg input.elementor-field,
#form-widg select.elementor-field,
#form-widg textarea.elementor-field {
  width: 100% !important;

  border: 1px solid #CCD8D4 !important;
  border-radius: 0 !important;

  color: var(--ig-black) !important;
  background: #FFFFFF !important;

  box-shadow: none !important;
  outline: none !important;

  font-size: 14px !important;

  transition:
    border-color .25s ease,
    box-shadow .25s ease,
    background .25s ease;
}


/* Text fields */
#form-widg input.elementor-field,
#form-widg select.elementor-field {
  min-height: 50px !important;
  padding: 0 14px !important;
}


/* Textarea */
#form-widg textarea.elementor-field {
  min-height: 125px !important;
  padding: 13px 14px !important;
  resize: vertical;
}


/* Placeholder */
#form-widg .elementor-field::placeholder {
  color: #A2AAA7 !important;
  opacity: 1;
}


/* Focus */
#form-widg input.elementor-field:focus,
#form-widg select.elementor-field:focus,
#form-widg textarea.elementor-field:focus {
  border-color: var(--ig-primary) !important;

  background: #FFFFFF !important;

  box-shadow:
    0 0 0 3px rgba(0, 86, 62, .08) !important;
}


/* Select */
#form-widg select.elementor-field {
  cursor: pointer;
}


/* =========================================================
   FILE UPLOAD
========================================================= */

#form-widg input[type="file"] {
  width: 100%;

  padding: 8px !important;

  border: 1px dashed #B8CBC4 !important;

  color: #68716E !important;
  background: #F8FBFA !important;

  cursor: pointer;
}

#form-widg input[type="file"]::file-selector-button {
  min-height: 36px;

  margin-left: 10px;
  padding: 7px 14px;

  border: 0;

  color: #FFFFFF;
  background: var(--ig-primary);

  font-family: "Tajawal", sans-serif;

  cursor: pointer;

  transition: background .25s ease;
}

#form-widg input[type="file"]::file-selector-button:hover {
  background: var(--ig-primary-dark);
}


/* Required */
#form-widg .elementor-mark-required .elementor-field-label::after,
#form-widg .elementor-field-required .elementor-field-label::after {
  color: var(--ig-primary) !important;
}


/* =========================================================
   SUBMIT BUTTON
========================================================= */

#form-widg .elementor-button {
  width: 100% !important;
  min-height: 54px !important;

  margin-top: 5px;

  border: 1px solid var(--ig-primary) !important;
  border-radius: 0 !important;

  color: var(--ig-white) !important;
  background: var(--ig-primary) !important;

  box-shadow: none !important;

  font-size: 15px !important;
  font-weight: 700 !important;

  transition:
    background .25s ease,
    border-color .25s ease,
    transform .25s ease,
    box-shadow .25s ease;
}

#form-widg .elementor-button:hover {
  border-color: var(--ig-primary-dark) !important;

  color: var(--ig-white) !important;
  background: var(--ig-primary-dark) !important;

  box-shadow:
    0 10px 24px rgba(0, 86, 62, .17) !important;

  transform: translateY(-2px);
}


/* =========================================================
   FORM MESSAGES
========================================================= */

#form-widg .elementor-message {
  margin-top: 14px;

  padding: 13px 15px;

  border: 1px solid var(--ig-border);

  font-size: 13px;
}

#form-widg .elementor-message-success {
  border-color: rgba(0, 86, 62, .25);

  color: var(--ig-primary-dark);

  background: #EAF4F0;
}

#form-widg .elementor-message-danger {
  border-color: #E8C8C8;

  color: #8A2525;

  background: #FFF4F4;
}


/* =========================================================
   RIGHT CONTENT
========================================================= */

.ig-quote-info {
  position: relative;
  z-index: 2;

  display: flex;
  flex-direction: column;

  width: 100%;
  min-height: 100%;

  padding: 48px 40px;

  color: var(--ig-white);
}


/* Header */
.ig-quote-info__head {
  position: relative;
  z-index: 3;

  margin-bottom: 37px;
}

.ig-quote-info__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  margin-bottom: 13px;

  color: #9ACBBB;

  font-size: 12px;
  font-weight: 700;
}

.ig-quote-info__eyebrow::before {
  content: "";

  width: 30px;
  height: 2px;

  background: currentColor;
}


.ig-quote-info h2 {
  margin: 0 0 17px;

  color: #FFFFFF !important;

  font-size: clamp(31px, 2.8vw, 46px);
  font-weight: 700;
  line-height: 1.18;
}

.ig-quote-info h2 span {
  color: #9ACBBB;
}


.ig-quote-info__head > p {
  max-width: 480px;

  margin: 0;

  color: rgba(255,255,255,.71) !important;

  font-size: 14px;
  font-weight: 400;
  line-height: 1.9;
}


/* =========================================================
   STEPS
========================================================= */

.ig-quote-steps {
  position: relative;
  z-index: 3;

  display: flex;
  flex-direction: column;
}

.ig-quote-step {
  position: relative;

  display: grid;
  grid-template-columns: 44px minmax(0,1fr);
  align-items: start;
  gap: 14px;

  padding: 18px 0;

  border-bottom: 1px solid rgba(255,255,255,.12);
}


/* الرقم */
.ig-quote-step__number {
  position: absolute;
  top: 18px;
  left: 0;

  color: rgba(255,255,255,.18);

  font-size: 11px;
  font-weight: 800;
}


/* Icon */
.ig-quote-step__icon {
  display: grid;
  place-items: center;

  width: 42px;
  height: 42px;

  border: 1px solid rgba(154,203,187,.35);

  color: #9ACBBB;

  background: rgba(255,255,255,.05);
}

.ig-quote-step__icon svg {
  width: 21px;
  height: 21px;

  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}


.ig-quote-step > div {
  padding-left: 25px;
}

.ig-quote-step strong {
  display: block;

  margin-bottom: 5px;

  color: #FFFFFF;

  font-size: 14px;
  font-weight: 700;
}

.ig-quote-step p {
  margin: 0;

  color: rgba(255,255,255,.63) !important;

  font-size: 12px;
  line-height: 1.7;
}


/* =========================================================
   CONTACT
========================================================= */

.ig-quote-info__contact {
  position: relative;
  z-index: 3;

  display: flex;
  align-items: center;
  gap: 14px;

  margin-top: auto;
  padding-top: 27px;
}

.ig-quote-info__contact-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;

  width: 47px;
  height: 47px;

  border: 1px solid rgba(255,255,255,.21);

  color: #FFFFFF;

  background: rgba(255,255,255,.07);
}

.ig-quote-info__contact-icon svg {
  width: 22px;
  height: 22px;

  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ig-quote-info__contact > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ig-quote-info__contact small {
  color: rgba(255,255,255,.58);

  font-size: 10px;
}

.ig-quote-info__contact strong {
  color: #FFFFFF;

  font-size: 13px;
  font-weight: 700;
}

.ig-quote-info__contact a {
  width: fit-content;

  color: #9ACBBB !important;

  font-size: 12px;
  font-weight: 600;

  text-decoration: none !important;
}


/* =========================================================
   DECORATIVE ELEMENTS
========================================================= */

.ig-quote-info::before {
  content: "IG";

  position: absolute;
  left: -20px;
  bottom: -60px;
  z-index: 0;

  color: rgba(255,255,255,.035);

  font-family: Arial, sans-serif !important;
  font-size: 210px;
  font-weight: 800;
  line-height: 1;

  pointer-events: none;
}


.ig-quote-info__decor {
  position: absolute;
  top: 24px;
  left: 25px;

  display: flex;
  gap: 7px;
}

.ig-quote-info__decor span {
  width: 5px;
  height: 5px;

  border-radius: 50%;

  background: #9ACBBB;
}

.ig-quote-info__decor span:nth-child(2) {
  opacity: .65;
}

.ig-quote-info__decor span:nth-child(3) {
  opacity: .35;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px) {

  #quote-form {
    padding: 70px 22px;
    gap: 20px;
  }

  #form-cont {
    flex-basis: 61%;
    padding: 35px 28px;
  }

  #content-cont {
    flex-basis: 39%;
  }

  .ig-quote-info {
    padding: 38px 28px;
  }

  .ig-quote-info h2 {
    font-size: 31px;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

  #quote-form {
    flex-direction: column !important;

    padding: 50px 17px;

    gap: 17px;
  }


  #form-cont,
  #content-cont {
    width: 100% !important;
    flex: 0 0 100% !important;
  }


  /* نخلي المعلومات الأول ثم الفورم */
  #content-cont {
    order: 1;
  }

  #form-cont {
    order: 2;

    padding: 30px 18px;
  }


  #form-cont .elementor-heading-title {
    font-size: 28px !important;
  }


  /* كل الحقول فوق بعض */
  #form-widg .elementor-field-group {
    width: 100% !important;
  }


  .ig-quote-info {
    padding: 36px 23px;
  }

  .ig-quote-info__head {
    margin-bottom: 23px;
  }

  .ig-quote-info h2 {
    font-size: 31px;
  }

  .ig-quote-info__head > p {
    font-size: 13px;
  }


  .ig-quote-step {
    padding: 15px 0;
  }


  .ig-quote-info__contact {
    margin-top: 24px;
  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 390px) {

  #quote-form {
    padding-inline: 12px;
  }

  #form-cont {
    padding-inline: 14px;
  }

  .ig-quote-info {
    padding-inline: 19px;
  }

}

