/* ==========================================================
   CONTACT PAGE SECTION STYLES
   ========================================================== */

   .ht-contact-section {
    position: relative;
    background-color: #f6f8fc;
    padding-bottom: 80px;
  }
  
  /* ----------------------------------------------------------
     HERO BANNER
     ---------------------------------------------------------- */
  .contact-hero {
    position: relative;
    background: linear-gradient(135deg, #022b5c 0%, #084992 50%, #0e67c7 100%);
    color: #ffffff;
    padding: 60px 0 100px;
    overflow: hidden;
    border-radius: 0 0 32px 32px;
  }
  
  .contact-hero__bg-dots {
    position: absolute;
    top: 20px;
    left: 30px;
    width: 120px;
    height: 80px;
    background-image: radial-gradient(rgba(255, 255, 255, 0.25) 1.5px, transparent 1.5px);
    background-size: 12px 12px;
    pointer-events: none;
  }
  
  .contact-hero__container {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .contact-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
  }
  
  .contact-hero__title {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.1;
  }
  
  .contact-hero__divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
  }
  
  .contact-hero__divider .line {
    width: 40px;
    height: 2px;
    background: #e1ad34;
  }
  
  .contact-hero__divider .diamond {
    color: #e1ad34;
    font-size: 0.75rem;
  }
  
  .contact-hero__subtitle {
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.98rem;
    line-height: 1.6;
    max-width: 680px;
    margin: 0 auto;
  }
  
  /* 3D Envelope & Paper Airplane Visual */
  .contact-hero__illustration {
    position: absolute;
    right: 5%;
    top: 15%;
    width: 180px;
    height: 150px;
    pointer-events: none;
  }
  
  .envelope-wrapper {
    position: relative;
    width: 130px;
    height: 90px;
    background: #2575fc;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    transform: rotate(-8deg);
  }
  
  .envelope-body {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    background: #ffffff;
    border-radius: 6px;
    padding: 10px;
  }
  
  .card-line {
    display: block;
    height: 4px;
    background: #e1e8f0;
    border-radius: 2px;
    margin-bottom: 6px;
  }
  .card-line.short { width: 40%; }
  .card-line.long { width: 85%; }
  .card-line.medium { width: 65%; }
  
  .airplane-badge {
    position: absolute;
    bottom: -12px;
    right: -12px;
    width: 44px;
    height: 44px;
    background: #e1ad34;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
  }
  
  @media (max-width: 991px) {
    .contact-hero__illustration { display: none; }
  }
  
  /* ----------------------------------------------------------
     MAIN GRID SECTION
     ---------------------------------------------------------- */
  .contact-content {
    position: relative;
    margin-top: -50px;
    z-index: 5;
  }
  
  .contact-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 28px;
    margin-bottom: 28px;
  }
  
  @media (max-width: 991px) {
    .contact-grid {
      grid-template-columns: 1fr;
    }
  }
  
  /* Cards Surface */
  .ht-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 10px 30px rgba(15, 76, 129, 0.06);
    border: 1px solid #eaf0f8;
    position: relative;
    overflow: hidden;
  }
  
  /* Card Header Components */
  .contact-card-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
  }
  
  .contact-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
  }
  
  .contact-card-icon--blue {
    background: #eef5ff;
    color: #1a73e8;
  }
  
  .contact-card-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 4px;
  }
  
  .contact-card-desc {
    font-size: 0.88rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.4;
  }
  
  /* Form Styling */
  .contact-form-card {
    position: relative;
  }
  
  .contact-form-card__accent-bar {
    position: absolute;
    top: 32px;
    left: 0;
    width: 5px;
    height: 40px;
    background: #e1ad34;
    border-radius: 0 4px 4px 0;
  }
  
  .form-row--2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  
  @media (max-width: 600px) {
    .form-row--2col {
      grid-template-columns: 1fr;
    }
  }
  
  .ht-form-group {
    margin-bottom: 18px;
  }
  
  .ht-label {
    display: block;
    font-size: 0.86rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 6px;
  }
  
  .ht-label .required {
    color: #ef4444;
  }
  
  .ht-label .optional {
    color: #1a73e8;
    font-weight: 500;
  }
  
  .input-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
  }
  
  .input-icon {
    position: absolute;
    left: 14px;
    color: #9ca3af;
    font-size: 0.95rem;
    pointer-events: none;
  }
  
  .input-icon-wrapper--textarea .input-icon {
    top: 14px;
  }
  
  .ht-input {
    width: 100%;
    padding: 11px 14px 11px 40px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    font-size: 0.92rem;
    color: #111827;
    background-color: #ffffff;
    outline: none;
    transition: all 0.2s ease;
  }
  
  .ht-input::placeholder {
    color: #9ca3af;
  }
  
  .ht-input:focus {
    border-color: #1a73e8;
    box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.12);
  }
  
  .ht-textarea {
    resize: vertical;
    min-height: 110px;
  }
  
  .ht-btn-submit {
    width: 100%;
    padding: 13px;
    background: linear-gradient(135deg, #dfa218 0%, #c6890c 100%);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 0.98rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    box-shadow: 0 4px 12px rgba(218, 155, 21, 0.3);
  }
  
  .ht-btn-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(218, 155, 21, 0.4);
  }
  
  .card-dots-bg {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 80px;
    height: 60px;
    background-image: radial-gradient(#dbe0e8 1.5px, transparent 1.5px);
    background-size: 10px 10px;
    pointer-events: none;
    opacity: 0.6;
  }
  
  /* ----------------------------------------------------------
     RIGHT COLUMN: CONTACT INFO & MAP
     ---------------------------------------------------------- */
  .info-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 24px;
  }
  
  .info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
  }
  
  .info-item__icon {
    width: 38px;
    height: 38px;
    background: #eef5ff;
    color: #1a73e8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
    margin-top: 2px;
  }
  
  .info-item__content h4 {
    font-size: 0.88rem;
    font-weight: 700;
    color: #1a73e8;
    margin-bottom: 2px;
  }
  
  .info-item__content p {
    font-size: 0.88rem;
    color: #374151;
    margin: 0;
    line-height: 1.45;
  }
  
  /* Embedded Map Styling */
  .contact-map-card {
    position: relative;
    height: 160px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
  }
  
  .map-btn {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: #ffffff;
    color: #1a73e8;
    padding: 7px 16px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background 0.2s;
  }
  
  .map-btn:hover {
    background: #f8fafc;
  }
  
  /* ----------------------------------------------------------
     BOTTOM FEATURES BAR (4 COLUMNS)
     ---------------------------------------------------------- */
  .contact-features-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 24px 28px;
  }
  
  @media (max-width: 991px) {
    .contact-features-bar {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 576px) {
    .contact-features-bar {
      grid-template-columns: 1fr;
    }
  }
  
  .feature-col {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  
  .feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
  }
  
  .feature-icon--blue { background: #eef5ff; color: #1a73e8; }
  .feature-icon--gold { background: #fef6e7; color: #d97706; }
  .feature-icon--green { background: #eaf8ef; color: #10b981; }
  .feature-icon--purple { background: #f3e8ff; color: #8b5cf6; }
  
  .feature-col h4 {
    font-size: 0.92rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 2px;
  }
  
  .feature-col p {
    font-size: 0.8rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.35;
  }