/* =========================================================
   04. Contact Options
   ========================================================= */

.contact-options-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(13, 110, 253, 0.055),
      transparent 30%
    ),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.contact-options-head {
  max-width: 900px;
}

.contact-options-kicker {
  color: #ff5a00;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.contact-options-kicker span {
  position: relative;
  width: 36px;
  height: 2px;
  background: #ff5a00;
}

.contact-options-kicker span::before,
.contact-options-kicker span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #ff5a00;
  transform: translateY(-50%);
}

.contact-options-kicker span::before {
  left: 0;
}

.contact-options-kicker span::after {
  right: 0;
}

.contact-options-head h2 {
  color: #071333;
  font-size: 44px;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -0.035em;
}

.contact-options-head h2 span {
  color: #ff5a00;
}

.contact-options-head > p {
  max-width: 760px;
  color: #52617e;
  font-size: 18px;
  line-height: 1.55;
}

/* Contact Cards */

.contact-options-cards {
  margin-top: 72px;
}

.contact-options-cards .row {
  position: relative;
  z-index: 2;
}

.contact-options-item {
  --option-color: #ff5a00;
  --option-soft: rgba(255, 90, 0, 0.08);
  --option-border: rgba(255, 90, 0, 0.26);

  padding-top: 72px;
}

.contact-options-item-orange {
  --option-color: #ff5a00;
  --option-soft: rgba(255, 90, 0, 0.08);
  --option-border: rgba(255, 90, 0, 0.28);
}

.contact-options-item-blue {
  --option-color: #0d6efd;
  --option-soft: rgba(13, 110, 253, 0.08);
  --option-border: rgba(13, 110, 253, 0.24);
}

.contact-options-item-green {
  --option-color: #159447;
  --option-soft: rgba(21, 148, 71, 0.08);
  --option-border: rgba(21, 148, 71, 0.35);
}

.contact-options-item-purple {
  --option-color: #7b18ee;
  --option-soft: rgba(123, 24, 238, 0.08);
  --option-border: rgba(123, 24, 238, 0.24);
}

.contact-options-item-gold {
  --option-color: #ff8400;
  --option-soft: rgba(255, 132, 0, 0.08);
  --option-border: rgba(255, 132, 0, 0.28);
}

.contact-options-icon-wrap {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 50%;
  width: 116px;
  height: 116px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px;
  border: 1px solid var(--option-border);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 32px var(--option-soft);
  transform: translateX(-50%);
}

.contact-options-icon-wrap::after {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid var(--option-border);
  border-radius: 50%;
}

.contact-options-icon {
  position: relative;
  z-index: 2;
  width: 88px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--option-color);
  background: radial-gradient(
    circle,
    var(--option-soft) 0%,
    rgba(255, 255, 255, 0.9) 72%
  );
  border-radius: 50%;
  font-size: 38px;
}

.contact-options-card {
  min-width: 0;
  min-height: 325px;
  padding: 32px 26px 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid #dbe5f1;
  border-radius: 17px;
  box-shadow: 0 16px 34px rgba(17, 40, 80, 0.06);
}

.contact-options-item-green .contact-options-card {
  border-color: #65c98b;
}

.contact-options-card-line {
  width: 62px;
  height: 2px;
  margin-bottom: 28px;
  background: var(--option-color);
  border-radius: 10px;
}

.contact-options-card h3 {
  min-width: 0;
  margin-bottom: 14px;
  color: #071333;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 900;
  letter-spacing: -0.025em;
  overflow-wrap: break-word;
}

.contact-options-card p {
  min-width: 0;
  margin-bottom: 0;
  color: #34405c;
  font-size: 16px;
  line-height: 1.55;
  overflow-wrap: break-word;
}

.contact-options-divider {
  width: 100%;
  margin: 25px 0 22px;
  border-top: 1px dashed #ccd7e6;
}

.contact-options-contact-link {
  margin-bottom: 18px;
  color: var(--option-color);
  text-decoration: none;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 800;
  overflow-wrap: break-word;
}

.contact-options-action {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  color: var(--option-color);
  text-decoration: none;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 900;
  transition:
    gap 0.2s ease,
    opacity 0.2s ease;
}

.contact-options-action:hover {
  gap: 18px;
  color: var(--option-color);
}

.contact-options-action i {
  font-size: 15px;
}

.contact-options-popular {
  position: absolute;
  z-index: 5;
  top: 72px;
  right: 0;
  padding: 5px 12px;
  color: #ffffff;
  background: #159447;
  border-radius: 0 16px 0 15px;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 800;
}

/* Decorative Connection Path */

.contact-options-path {
  position: absolute;
  z-index: 1;
  top: 48px;
  left: 8%;
  right: 8%;
  height: 50px;
  border-top: 2px dashed rgba(255, 106, 0, 0.35);
  border-radius: 50%;
}

.contact-options-path::before,
.contact-options-path::after {
  content: "";
  position: absolute;
  top: -7px;
  width: 13px;
  height: 13px;
  border: 3px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(13, 110, 253, 0.14);
}

.contact-options-path::before {
  left: 34%;
  background: #0d6efd;
}

.contact-options-path::after {
  right: 20%;
  background: #ff6682;
}

/* Availability Bar */

.contact-options-availability {
  padding: 27px 30px;
  background:
    radial-gradient(
      circle at left center,
      rgba(13, 110, 253, 0.05),
      transparent 25%
    ),
    #f7faff;
  border: 1px solid #cfe1fa;
  border-radius: 17px;
  box-shadow: 0 14px 30px rgba(13, 40, 88, 0.035);
}

.contact-options-availability-main {
  min-width: 0;
  padding-right: 28px;
}

.contact-options-clock {
  position: relative;
  width: 68px;
  min-width: 68px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #075be8;
  border: 2px solid #075be8;
  border-radius: 50%;
  background: #ffffff;
  font-size: 30px;
}

.contact-options-clock::after {
  content: "";
  position: absolute;
  inset: -10px;
  border: 1px dashed rgba(13, 110, 253, 0.55);
  border-radius: 50%;
}

.contact-options-availability-copy {
  min-width: 0;
}

.contact-options-availability-copy h3 {
  color: #071333;
  font-size: 22px;
  line-height: 1.3;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.contact-options-availability-copy p {
  color: #34405c;
  font-size: 15px;
  line-height: 1.45;
}

.contact-options-timezone {
  min-width: 0;
  min-height: 72px;
  padding: 4px 20px;
  border-left: 1px solid #d6e0ef;
}

.contact-options-timezone > div:last-child {
  min-width: 0;
}

.contact-options-timezone h4 {
  color: #071333;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 800;
}

.contact-options-timezone p {
  color: #26345d;
  font-size: 14px;
  line-height: 1.45;
  overflow-wrap: break-word;
}

.contact-options-flag,
.contact-options-globe {
  width: 45px;
  min-width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid #cfe1fa;
  border-radius: 50%;
}

.contact-options-flag {
  font-size: 23px;
}

.contact-options-globe {
  color: #7b18ee;
  font-size: 24px;
}

/* =========================================================
   Contact Options Responsive
   ========================================================= */

@media (max-width: 1600px) {
  .contact-options-kicker {
    font-size: 14px;
  }

  .contact-options-head h2 {
    font-size: 32px;
  }

  .contact-options-head > p {
    font-size: 15px;
  }

  .contact-options-cards {
    margin-top: 62px;
  }

  .contact-options-item {
    padding-top: 64px;
  }

  .contact-options-icon-wrap {
    width: 102px;
    height: 102px;
  }

  .contact-options-icon {
    width: 78px;
    height: 78px;
    font-size: 31px;
  }

  .contact-options-card {
    min-height: 300px;
    padding: 28px 18px 22px;
  }

  .contact-options-card-line {
    margin-bottom: 24px;
  }

  .contact-options-card h3 {
    font-size: 17px;
  }

  .contact-options-card p,
  .contact-options-contact-link,
  .contact-options-action {
    font-size: 14px;
  }

  .contact-options-popular {
    top: 64px;
  }

  .contact-options-availability {
    padding: 24px;
  }

  .contact-options-availability-copy h3 {
    font-size: 18px;
  }

  .contact-options-availability-copy p,
  .contact-options-timezone p {
    font-size: 13px;
  }

  .contact-options-timezone h4 {
    font-size: 14px;
  }
}

@media (max-width: 1199px) {
  .contact-options-cards {
    margin-top: 48px;
  }

  .contact-options-item {
    padding-top: 58px;
  }

  .contact-options-icon-wrap {
    width: 94px;
    height: 94px;
  }

  .contact-options-icon {
    width: 72px;
    height: 72px;
    font-size: 29px;
  }

  .contact-options-card {
    min-height: 290px;
  }

  .contact-options-popular {
    top: 58px;
  }

  .contact-options-timezone {
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (max-width: 991px) {
  .contact-options-cards {
    margin-top: 42px;
  }

  .contact-options-card {
    min-height: 315px;
  }

  .contact-options-availability {
    padding: 24px 26px;
  }

  .contact-options-availability-main {
    padding: 0 0 24px;
  }

  .contact-options-timezone {
    margin-top: 0;
    padding: 22px 16px;
    border-top: 1px solid #d6e0ef;
    border-left: 0;
  }

  .contact-options-timezone:nth-child(1) {
    border-left: 0;
  }

  .contact-options-global {
    padding-bottom: 0;
  }
}

@media (max-width: 767px) {
  .contact-options-kicker {
    gap: 10px !important;
    margin-bottom: 18px !important;
    font-size: 13px;
  }
  .contact-options-description p {
    font-size: 15px;
  }

  .contact-options-kicker span {
    width: 34px;
  }

  .contact-options-head h2 {
    font-size: 22px;
    line-height: 1.2;
  }

  .contact-options-head > p {
    max-width: 500px;
    font-size: 16px;
    line-height: 1.5;
  }

  .contact-options-cards {
    margin-top: 28px;
  }

  .contact-options-item {
    padding-top: 55px;
  }

  .contact-options-icon-wrap {
    width: 90px;
    height: 90px;
  }

  .contact-options-icon {
    width: 68px;
    height: 68px;
    font-size: 27px;
  }

  .contact-options-card {
    min-height: auto;
    padding: 28px 20px 24px;
  }

  .contact-options-card-line {
    margin-bottom: 22px;
  }

  .contact-options-card h3 {
    font-size: 18px;
  }

  .contact-options-card p,
  .contact-options-contact-link,
  .contact-options-action {
    font-size: 13px;
  }

  .contact-options-divider {
    margin: 22px 0;
  }

  .contact-options-action {
    margin-top: 0;
  }

  .contact-options-popular {
    top: 55px;
  }

  .contact-options-availability {
    margin-top: 36px !important;
  }

  .contact-options-clock {
    width: 60px;
    min-width: 60px;
    height: 60px;
    font-size: 26px;
  }

  .contact-options-availability-copy h3 {
    font-size: 18px;
  }

  .contact-options-availability-copy p,
  .contact-options-timezone p {
    font-size: 14px;
  }

  .contact-options-timezone h4 {
    font-size: 16px;
  }

  .contact-options-card h3 {
    font-size: 15px;
  }
}

@media (max-width: 575.98px) {
  .contact-options-section {
    padding-top: 42px !important;
    padding-bottom: 42px !important;
  }

  .contact-options-kicker {
    flex-wrap: wrap;
  }

  .contact-options-kicker span {
    width: 25px;
  }

  .contact-options-head h2 br,
  .contact-options-head > p br {
    display: none;
  }

  .contact-options-item {
    padding-top: 52px;
  }

  .contact-options-icon-wrap {
    width: 86px;
    height: 86px;
  }

  .contact-options-icon {
    width: 64px;
    height: 64px;
    font-size: 25px;
  }

  .contact-options-card {
    padding: 27px 18px 23px;
  }

  .contact-options-card h3 {
    font-size: 16px;
  }

  .contact-options-popular {
    top: 52px;
  }

  .contact-options-availability {
    padding: 22px 18px;
  }

  .contact-options-availability-main {
    align-items: flex-start !important;
    gap: 18px !important;
  }

  .contact-options-clock {
    width: 54px;
    min-width: 54px;
    height: 54px;
    font-size: 23px;
  }

  .contact-options-clock::after {
    inset: -7px;
  }

  .contact-options-availability-copy h3 {
    font-size: 16px;
  }

  .contact-options-availability-copy p {
    font-size: 13px;
  }

  .contact-options-timezone {
    padding-left: 0;
    padding-right: 0;
  }

  .contact-options-timezone h4 {
    font-size: 15px;
  }

  .contact-options-timezone p {
    font-size: 13px;
  }

  .contact-options-flag,
  .contact-options-globe {
    width: 42px;
    min-width: 42px;
    height: 42px;
  }
}

/* base styles */
h2 {
  font-size: 44px !important;
}

@media (max-width: 1599.98px) {
  h2 {
    font-size: 32px !important;
  }
}

@media (max-width: 1399.98px) {
  h2 {
    font-size: 30px !important;
  }
}

@media (max-width: 1199.98px) {
  h2 {
    font-size: 28px !important;
  }
}

@media (max-width: 991.98px) {
  h2 {
    font-size: 26px !important;
  }
}

@media (max-width: 767.98px) {
  h2 {
    font-size: 22px !important;
  }
}

@media (max-width: 575.98px) {
  h2 {
    font-size: 21px !important;
  }
}

@media (max-width: 374.98px) {
  h2 {
    font-size: 20px !important;
  }
}
