/* Contact Us Hero Section */
.contact-hero-section {
    padding: 150px 0 80px;
    position: relative;
    z-index: 1;
    text-align: center;
}

.contact-hero-title {
    font-size: 64px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.contact-hero-subtitle {
    font-size: 18px;
    font-weight: 400;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Contact Form Section */
.contact-form-section {
    padding: 60px 0;
    position: relative;
    z-index: 1;
}

.contact-form-card {
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.12) 0%,
        rgba(255, 255, 255, 0.08) 100%
    );
    border: 1px solid var(--border-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.contact-info-panel {
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.12) 0%,
        rgba(255, 255, 255, 0.08) 100%
    );
    padding: 40px;
    border-bottom: none;
}

@media (max-width: 992px) {
    .contact-info-panel {
        border-bottom: 1px solid var(--border-color);
    }
}

.contact-info-content {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-form-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.2;
}

.contact-form-description {
    font-size: 16px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 32px;
    line-height: 1.5;
}

.contact-info-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: flex-start;
    margin-bottom: 30px;
    width: 100%;
    gap: 45px 35px;
}

.contact-info-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    width: calc(50% - 17.5px);
    margin-bottom: 0;
    flex-shrink: 0;
}

.contact-info-item:nth-child(3),
.contact-info-item:nth-child(4) {
    margin-top: 0;
}

.contact-icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
}

.contact-icon-square {
    border-radius: 10px;
}

.contact-icon-circle i {
    font-size: 22px;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
    flex: 1;
    min-width: 0;
}

.contact-info-label {
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
    white-space: nowrap;
}

.contact-info-value {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: var(--white);
    line-height: 1.4;
    white-space: nowrap;
}

.contact-divider {
    height: 2px;
    background: #fff;
    border: none;
    margin: 28px 0 18px 0;
    width: 100%;
}

.sosial {
    padding: 0;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sosial a {
    background: rgba(0, 20, 66, 0.5);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    max-width: 50px;
    max-height: 50px;
}

.sosial a i {
    font-size: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    flex-shrink: 0;
    text-align: center;
    color: var(--color-white);
}

.sosial a:hover {
    background: rgba(0, 20, 66, 0.7);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

@media screen and (max-width: 1400px){
    .sosial a {
        padding: 25px;
    }
    .sosial a i {
        font-size: 20px;
    }
}
@media screen and (max-width: 1200px){
    .sosial a {
        padding: 19px;
    }
    .sosial a i {
        font-size: 20px;
    }
}
@media screen and (max-width: 992px) {
    .sosial a {
        padding: 20px;
    }

    .sosial a i {
        font-size: 18px;
    }
}

@media screen and (max-width: 576px) {
    .sosial a {
        width: 60px;
        height: 60px;
        min-width: 60px;
        min-height: 60px;
        max-width: 60px;
        max-height: 60px;
        padding: 18px;
    }

    .sosial a i {
        font-size: 26px;
        width: 26px;
        height: 26px;
        min-width: 26px;
        min-height: 26px;
        max-width: 26px;
        max-height: 26px;
    }
}

.contact-form-panel {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    display: flex;
    align-items: flex-start;
}

.contact-form-content {
    height: 100%;
    width: 100%;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
}

.contact-form .row {
    margin: 0;
    margin-bottom: 20px;
}

.contact-form .row > div {
    padding-left: 0;
    padding-right: 12px;
}

.contact-form .row > div:last-child {
    padding-right: 0;
    padding-left: 12px;
}

@media (max-width: 768px) {
    .contact-form .row > div {
        padding-left: 0;
        padding-right: 0;
    }

    .contact-form .row > div:last-child {
        padding-left: 0;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.contact-form .row {
    margin-bottom: 20px;
}

.contact-form .form-group:last-of-type {
    margin-bottom: 0;
}

.form-label {
    font-size: 16px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 8px;
}

.form-control {
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.06) 100%
    );
    border: 1px solid var(--border-color);
    border-radius: 8px !important;
    color: var(--white) !important;
    padding: 12px 16px !important;
    font-size: 14px !important;
    transition: all 0.3s ease !important;
}

.form-control:focus {
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.06) 100%
    );
    border-color: #4a90e2 !important;
    box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.2) !important;
    color: var(--white) !important;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.5) !important;
}

.form-control:-webkit-autofill,
.form-control:-webkit-autofill:hover,
.form-control:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 30px rgba(255, 255, 255, 0.1) inset !important;
    -webkit-text-fill-color: var(--white) !important;
    transition: background-color 5000s ease-in-out 0s !important;
}

.btn-submit {
    padding: 12px 32px;
    background: rgba(60, 60, 60, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    font-family: "Inter", sans-serif;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 5px;
    align-self: flex-start;
    width: auto;
}

.btn-submit:hover {
    background: rgba(70, 70, 70, 0.95);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Need Help Right Now Section */
.need-help-section {
    padding: 80px 0;
    position: relative;
    z-index: 1;
    text-align: center;
    background-color: #00134d;
    background-image: url("../img/backgrounds/94.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.need-help-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url(/foto/94.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.need-help-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.need-help-description {
    font-size: 18px;
    font-weight: 400;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

/* =========================
   BACKGROUND DECORATIONS
   ========================= */
.bg-gradient-conic {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1000px;
  height: 350px;
  pointer-events: none;
  z-index: 0;
}

.bg-ellipse {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  filter: blur(50px);
  opacity: 1;
}

.bg-ellipse-1,
.bg-ellipse-2,
.bg-ellipse-3 {
  width: 674px;
  height: 646px;
}

/* =========================
   CONTACT HERO
   ========================= */
.contact-hero-section {
  position: relative;
  z-index: 1;
  padding: 160px 0 70px;
}

.contact-hero-title {
  font-size: 56px;
  margin: 0 0 12px;
}

/* =========================
   CONTACT FORM SECTION
   ========================= */
.contact-form-section {
  position: relative;
  z-index: 1;
  padding: 70px 0;
}

.contact-form-card {
  border-radius: 12px;
  overflow: hidden;
}

.contact-info-panel,
.contact-form-panel {
  padding: 40px;
}

/* Left panel content */
.contact-info-content {
  width: 100%;
  overflow: hidden;
}

.contact-form-title {
  font-size: 32px;
  margin: 0 0 10px;
}

.contact-form-description {
  font-size: 14px;
  margin: 0 0 24px;
}

.contact-info-list {
  display: flex;
  flex-wrap: wrap;
  gap: 35px 25px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: calc(50% - 15px);
  min-width: 0;
}

.contact-icon-circle {
  width: 45px;
  height: 45px;
  min-width: 45px;
  min-height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.contact-icon-circle i {
  font-size: 20px;
}

.contact-info-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
  overflow: hidden;
}

.contact-info-label {
  font-size: 13px;
  white-space: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.contact-info-value {
  font-size: 15px;
  line-height: 1.3;
  white-space: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
}

/* Optional: clamp text panjang (2 baris) */
@supports (text-overflow: ellipsis) {
  .contact-info-value {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

.contact-divider {
  margin: 24px 0;
}

.social-media-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.social-media-label {
  font-size: 14px;
}

.social-media-icons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-media-icon-link {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  text-decoration: none;
}

.social-media-icon-link i {
  font-size: 18px;
}

/* Right panel form */
.contact-form-content {
  width: 100%;
}

.contact-form .form-group {
  margin-bottom: 16px;
}

.contact-form .form-label {
  margin-bottom: 8px;
  display: inline-block;
}

.btn-submit {
  width: 100%;
  padding: 12px 16px;
  border-radius: 10px;
  border: 0;
  cursor: pointer;
}

/* =========================
   RESPONSIVE BREAKPOINTS
   ========================= */

/* 1400px */
@media (max-width: 1400px) {
  .bg-gradient-conic {
    width: 1000px;
    height: 350px;
  }
}

/* 1200px */
@media (max-width: 1200px) {
  .bg-gradient-conic {
    width: 900px;
    height: 320px;
  }

  .contact-hero-title {
    font-size: 48px;
  }
}

/* 992px (tablet & below) */
@media (max-width: 992px) {
  .bg-gradient-conic {
    width: 700px;
    height: 250px;
  }

  .contact-hero-section {
    padding: 130px 0 60px;
  }

  .contact-hero-title {
    font-size: 48px;
  }

  .contact-hero-subtitle {
    font-size: 16px;
  }

  .contact-info-panel,
  .contact-form-panel {
    padding: 30px;
  }

  .contact-form-title {
    font-size: 32px;
  }
}

/* 768px */
@media (max-width: 768px) {
  .contact-hero-section {
    padding: 120px 0 50px;
  }

  .contact-hero-title {
    font-size: 36px;
    margin-bottom: 15px;
  }

  .contact-hero-subtitle {
    font-size: 16px;
  }

  .contact-form-section {
    padding: 40px 0;
  }

  .contact-form-card {
    border-radius: 10px;
  }

  .contact-info-panel,
  .contact-form-panel {
    padding: 25px;
  }

  .contact-form-title {
    font-size: 28px;
  }

  .contact-form-description {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .contact-info-list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 22px 28px;
  }

  .contact-info-item {
    width: calc(50% - 14px);
  }

  .contact-icon-circle {
    width: 45px;
    height: 45px;
  }

  .contact-icon-circle i {
    font-size: 18px;
  }

  .contact-info-label {
    font-size: 13px;
  }

  .contact-info-value {
    font-size: 15px;
  }

  .contact-form .row > div {
    margin-bottom: 20px;
  }
  .contact-form .row > div:last-child {
    margin-bottom: 0;
  }
}

/* 576px */
@media (max-width: 576px) {
  .contact-hero-section {
    padding: 100px 0 40px;
  }

  .contact-hero-title {
    font-size: 28px;
    margin-bottom: 12px;
  }

  .contact-hero-subtitle {
    font-size: 14px;
  }

  .contact-form-section {
    padding: 30px 0;
  }

  .contact-info-panel,
  .contact-form-panel {
    padding: 20px;
  }

  .contact-form-title {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .contact-form-description {
    font-size: 13px;
    margin-bottom: 25px;
  }

  .contact-info-list {
    flex-direction: column;
    gap: 16px;
  }

  .contact-info-item {
    width: 100%;
  }

  .contact-icon-circle {
    width: 40px;
    height: 40px;
  }

  .contact-icon-circle i {
    font-size: 16px;
  }

  .contact-info-label {
    font-size: 12px;
  }

  .contact-info-value {
    font-size: 14px;
  }
}
