/* ========================================
       CONTACTO PAGE STYLES
    ======================================== */

    /* Page Header */
    .page-header-section {
      background-color: #F5FAF7;
      padding: 50px 0;
      text-align: center;
    }

    .breadcrumb-custom {
      font-size: 0.9rem;
      color: #5B6A63;
      margin-bottom: 16px;
    }

    .breadcrumb-custom a {
      color: #5B6A63;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .breadcrumb-custom a:hover {
      color: #27B97A;
    }

    .breadcrumb-custom .sep {
      margin: 0 8px;
      color: #5B6A63;
    }

    .breadcrumb-custom .current {
      color: #27B97A;
      font-weight: 600;
    }

    .page-title {
      font-size: 2.25rem;
      font-weight: 700;
      color: #17251F;
      margin-bottom: 16px;
    }

    .page-subtitle {
      font-size: 1rem;
      color: #5B6A63;
      max-width: 700px;
      margin: 0 auto;
      line-height: 1.7;
    }

    /* Contact Card */
    .contact-card-wrapper {
      min-height: calc(100vh - 110px);
      padding: 72px 24px;
      display: flex;
      align-items: center;
      background: linear-gradient(180deg, #F5FAF7 0%, #FFFFFF 100%);
      scroll-margin-top: 112px;
    }

    .contact-card {
      width: 100%;
      max-width: 1220px;
      margin: 0 auto;
      border-radius: 18px;
      overflow: hidden;
      box-shadow: 0 18px 56px rgba(23,37,31,0.12);
      display: flex;
      min-height: 660px;
      border: 1px solid #DDEEE6;
      background: #FFFFFF;
    }

    /* Left - Form */
    .contact-form-side {
      width: 62%;
      background-color: #FFFFFF;
      padding: 56px 64px;
    }

    .form-title {
      font-size: 1.25rem;
      font-weight: 700;
      color: #17251F;
      margin-bottom: 34px;
    }

    .form-title i {
      color: #27B97A;
      margin-right: 6px;
    }

    .form-group {
      margin-bottom: 24px;
    }

    .form-group label {
      display: block;
      font-weight: 600;
      color: #17251F;
      margin-bottom: 6px;
      font-size: 0.9rem;
    }

    .form-group .form-control {
      width: 100%;
      height: 54px;
      border: 1px solid #DDEEE6;
      border-radius: 6px;
      padding: 0 16px;
      font-size: 1rem;
      color: #17251F;
      font-family: 'Inter', sans-serif;
      transition: all 0.3s ease;
      background-color: #FFFFFF;
    }

    .form-group .form-control::placeholder {
      color: #A0B0A8;
    }

    .form-group .form-control:focus {
      border-color: #27B97A;
      outline: none;
      box-shadow: 0 0 0 3px rgba(39, 185, 122, 0.15);
    }

    .form-group textarea.form-control {
      min-height: 150px;
      padding: 14px 16px;
      resize: vertical;
    }

    .btn-submit {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      width: 100%;
      justify-content: center;
      padding: 15px 34px;
      background-color: #27B97A;
      color: #FFFFFF;
      font-size: 1rem;
      font-weight: 600;
      border-radius: 8px;
      border: none;
      cursor: pointer;
      transition: all 0.3s ease;
      font-family: 'Inter', sans-serif;
    }

    .btn-submit:hover {
      background-color: #1A7A52;
      transform: translateY(-1px);
      box-shadow: 0 4px 12px rgba(39, 185, 122, 0.35);
    }

    .privacy-note {
      font-size: 0.86rem;
      color: #5B6A63;
      margin-top: 20px;
      display: flex;
      align-items: flex-start;
      gap: 6px;
    }

    .privacy-note i {
      color: #27B97A;
      margin-top: 2px;
      font-size: 0.85rem;
    }

    /* Right - Info */
    .contact-info-side {
      width: 38%;
      background-color: #27B97A;
      padding: 56px 52px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }

    .contact-info-side::after {
      content: '';
      position: absolute;
      right: -90px;
      bottom: -110px;
      width: 260px;
      height: 260px;
      border-radius: 50%;
      background: rgba(255,255,255,0.08);
    }

    .info-title {
      position: relative;
      z-index: 1;
      font-size: 1.45rem;
      font-weight: 700;
      color: #FFFFFF;
      margin-bottom: 34px;
    }

    .info-title i {
      margin-right: 6px;
    }

    .info-item {
      position: relative;
      z-index: 1;
      padding: 24px 0;
      border-bottom: 1px solid rgba(255,255,255,0.2);
    }

    .info-item:first-of-type {
      padding-top: 0;
    }

    .info-item:last-child {
      border-bottom: none;
    }

    .info-item .info-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background-color: rgba(255,255,255,0.15);
      margin-bottom: 10px;
      font-size: 1rem;
    }

    .info-item .info-icon i {
      color: #FFFFFF;
    }

    .info-item .info-label {
      display: block;
      font-size: 0.82rem;
      font-weight: 600;
      color: rgba(255,255,255,0.7);
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 4px;
    }

    .info-item .info-value {
      display: block;
      font-size: 1.05rem;
      font-weight: 500;
      color: #FFFFFF;
      line-height: 1.5;
    }

    /* Responsive */
    @media (max-width: 767.98px) {
      .contact-card {
        flex-direction: column;
        min-height: 0;
      }

      .contact-form-side,
      .contact-info-side {
        width: 100%;
      }

      .contact-form-side {
        padding: 36px 26px;
      }

      .contact-info-side {
        padding: 36px 26px;
      }

      .page-title {
        font-size: 1.8rem;
      }

      .page-header-section {
        padding: 40px 0;
      }

      .contact-card-wrapper {
        min-height: auto;
        padding: 42px 16px;
      }
    }
